Discuss this help topic in SecureBlackbox Forum
Defines Microsoft Office document types.
Declaration
[C#/Java]
enum TSBOfficeBinaryDocumentType { Unknown = 0, Document = 1, Spreadsheet = 2, Presentation = 3 };
[VB.NET]
Enum TSBOfficeBinaryDocumentType
Unknown = 0
Document = 1
Spreadsheet = 2
Presentation = 3
End Enum
[Pascal]
TSBOfficeBinaryDocumentType = (dtUnknown, dtDocument, dtSpreadsheet, dtPresentation);
[C++]
typedef uint8_t TSBOfficeBinaryDocumentTypeRaw;
typedef enum { dtUnknown = 0, dtDocument = 1, dtSpreadsheet = 2, dtPresentation = 3 } TSBOfficeBinaryDocumentType;
Description
Possible values:
Declared in
.NET:
- Namespace: SBOfficeCommon
- Assembly: SecureBlackbox.Office
VCL:Java:
- Package: SecureBlackbox.Office.jar
C++:
Discuss this help topic in SecureBlackbox Forum