Discuss this help topic in SecureBlackbox Forum
Defines possible start positions for seek operation in files.
Declaration
[C#/Java]
enum TSBFileSeekOrigin { sfsoBegin = 0, sfsoCurrent = 1, sfsoEnd = 2 };
[VB.NET]
Enum TSBFileSeekOrigin
sfsoBegin = 0
sfsoCurrent = 1
sfsoEnd = 2
End Enum
[Pascal]
TSBFileSeekOrigin = (sfsoBegin, sfsoCurrent, sfsoEnd);
[C++]
typedef uint8_t TSBFileSeekOriginRaw;
typedef enum { sfsoBegin = 0, sfsoCurrent = 1, sfsoEnd = 2 } TSBFileSeekOrigin;
Description
Possible values:
Declared in
.NET:
- Namespace: SBCustomFSAdapter
- Assembly: SecureBlackbox.Base
VCL:Java:
- Package: SecureBlackbox.Base.jar
C++:
Discuss this help topic in SecureBlackbox Forum