SbNativeArrayTSeek Method |
Sets the current position of the current stream to the given value.
Namespace: OIV.Inventor.GenericAssembly: OIV.Inventor.SbLinear (in OIV.Inventor.SbLinear.dll) Version: 2024.2.2.Release.778f4cc64de03c89c1282c66aa1f73c0e9a1408b
Syntax public override long Seek(
long offset,
SeekOrigin origin
)
Public Overrides Function Seek (
offset As Long,
origin As SeekOrigin
) As Long
public:
virtual long long Seek(
long long offset,
SeekOrigin origin
) override
abstract Seek :
offset : int64 *
origin : SeekOrigin -> int64
override Seek :
offset : int64 *
origin : SeekOrigin -> int64
Parameters
- offset
- Type: SystemInt64
The point relative to origin to begin seeking from. This is NOT a byte offset but an element offset. - origin
- Type: System.IOSeekOrigin
Specifies the beginning, the end, or the current position as a reference point for origin, using a value of type SeekOrigin.
Return Value
Type:
Int64The new position in the stream.
See Also