Sets the position within the current stream.
Namespace:
pdftron.Filters
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public void Seek(
ulong offset,
FilterReferencePos origin
)
Public Sub Seek (
offset As ULong,
origin As FilterReferencePos
)
public:
virtual void Seek(
[InAttribute] unsigned long long offset,
[InAttribute] FilterReferencePos origin
) sealed
function Seek(offset, origin);
Parameters
- offset
- Type: SystemUInt64
A byte offset relative to origin. If offset is negative,
the new position will precede the position specified by origin by the number
of bytes specified by offset. If offset is zero, the new position will be the
position specified by origin. If offset is positive, the new position will follow
the position specified by origin by the number of bytes specified by offset.
- origin
- Type: pdftron.FiltersFilterReferencePos
A value of type FilterReferencePos indicating the reference point used
to obtain the new position
See Also