Discuss this help topic in SecureBlackbox Forum
Defines possible start positions for seek operation in files.
Declaration
[C#]
public 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;
[PHP]
class TSBFileSeekOrigin extends TSBBaseEnum {
const sfsoBegin = 0;
const sfsoCurrent = 1;
const sfsoEnd = 2;
}
[Java]
public enum TSBFileSeekOrigin { sfsoBegin, sfsoCurrent, sfsoEnd }
Possible values
Declared in
.NET:
- Namespace: SBCustomFSAdapter
- Assembly: SecureBlackbox
VCL:Java:
- Package: SecureBlackbox.Base.jar
C++:
Discuss this help topic in SecureBlackbox Forum