Discuss this help topic in SecureBlackbox Forum
Defines Microsoft Office OOXML document types.
Declaration
[C#/Java]
enum TSBOfficeOpenXMLDocumentType { Unknown = 0, Document = 1, DocumentTemplate = 2, Spreadsheet = 3, SpreadsheetTemplate = 4, SpreadsheetBinary = 5, SpreadsheetAddIn = 6, Presentation = 7, PresentationTemplate = 8, PresentationSlideshow = 9, PresentationAddIn = 10 };
[VB.NET]
Enum TSBOfficeOpenXMLDocumentType
Unknown = 0
Document = 1
DocumentTemplate = 2
Spreadsheet = 3
SpreadsheetTemplate = 4
SpreadsheetBinary = 5
SpreadsheetAddIn = 6
Presentation = 7
PresentationTemplate = 8
PresentationSlideshow = 9
PresentationAddIn = 10
End Enum
[Pascal]
TSBOfficeOpenXMLDocumentType = (xdtUnknown, xdtDocument, xdtDocumentTemplate, xdtSpreadsheet, xdtSpreadsheetTemplate, xdtSpreadsheetBinary, xdtSpreadsheetAddIn, xdtPresentation, xdtPresentationTemplate, xdtPresentationSlideshow, xdtPresentationAddIn);
[C++]
typedef uint8_t TSBOfficeOpenXMLDocumentTypeRaw;
typedef enum { xdtUnknown = 0, xdtDocument = 1, xdtDocumentTemplate = 2, xdtSpreadsheet = 3, xdtSpreadsheetTemplate = 4, xdtSpreadsheetBinary = 5, xdtSpreadsheetAddIn = 6, xdtPresentation = 7, xdtPresentationTemplate = 8, xdtPresentationSlideshow = 9, xdtPresentationAddIn = 10 } TSBOfficeOpenXMLDocumentType;
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