Discuss this help topic in SecureBlackbox Forum
This topic is under development…
Declaration
[C#]
public enum TPDFXrefEntryType { etGeneric = 0, etObjStream = 1 };
[VB.NET]
Enum TPDFXrefEntryType
etGeneric = 0
etObjStream = 1
End Enum
[Pascal]
TPDFXrefEntryType = (etGeneric, etObjStream);
[C++]
typedef uint8_t TPDFXrefEntryTypeRaw;
typedef enum { etGeneric = 0, etObjStream = 1 } TPDFXrefEntryType;
[PHP]
class TPDFXrefEntryType extends TSBBaseEnum {
const etGeneric = 0;
const etObjStream = 1;
}
[Java]
public enum TPDFXrefEntryType { etGeneric, etObjStream }
Possible values
Declared in
.NET:
- Namespace: SBPDFCore
- Assembly: SecureBlackbox.PDF
VCL:Java:
- Package: SecureBlackbox.PDF.jar
C++:
Discuss this help topic in SecureBlackbox Forum