Discuss this help topic in SecureBlackbox Forum
Defines Microsoft Office document types.
Declaration
[C#]
public 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;
[PHP]
class TSBOfficeBinaryDocumentType extends TSBBaseEnum {
const dtUnknown = 0;
const dtDocument = 1;
const dtSpreadsheet = 2;
const dtPresentation = 3;
}
[Java]
public enum TSBOfficeBinaryDocumentType { dtUnknown, dtDocument, dtSpreadsheet, dtPresentation }
Possible values
Declared in
.NET:
- Namespace: SBOfficeCommon
- Assembly: SecureBlackbox.Office
VCL:Java:
- Package: SecureBlackbox.Office.jar
C++:
Discuss this help topic in SecureBlackbox Forum