Enum STREAM_SEEK
The STREAM_SEEK enumeration values specify the origin from which to calculate the new seek-pointer location.
Namespace: Syncfusion.CompoundFile.XlsIO.Native
Assembly: Syncfusion.XlsIO.Base.dll
Syntax
public enum STREAM_SEEK
Fields
Name | Description |
---|---|
STREAM_SEEK_CUR | The new seek pointer is an offset relative to the current seek pointer location. In this case, the dlibMove parameter is the signed displacement from the current seek position. |
STREAM_SEEK_END | The new seek pointer is an offset relative to the end of the stream. In this case, the dlibMove parameter is the new seek position relative to the end of the stream. |
STREAM_SEEK_SET | The new seek pointer is an offset relative to the beginning of the stream. In this case, the dlibMove parameter is the new seek position relative to the beginning of the stream. |