Discuss this help topic in SecureBlackbox Forum

TSBOfficeOpenXMLDocumentType

Declared in     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Defines Microsoft Office OOXML document types.

Declaration

[C#]
    public 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;

[PHP]
    class TSBOfficeOpenXMLDocumentType extends TSBBaseEnum {
        const xdtUnknown = 0;
        const xdtDocument = 1;
        const xdtDocumentTemplate = 2;
        const xdtSpreadsheet = 3;
        const xdtSpreadsheetTemplate = 4;
        const xdtSpreadsheetBinary = 5;
        const xdtSpreadsheetAddIn = 6;
        const xdtPresentation = 7;
        const xdtPresentationTemplate = 8;
        const xdtPresentationSlideshow = 9;
        const xdtPresentationAddIn = 10;
    }

[Java]
    public enum TSBOfficeOpenXMLDocumentType { xdtUnknown, xdtDocument, xdtDocumentTemplate, xdtSpreadsheet, xdtSpreadsheetTemplate, xdtSpreadsheetBinary, xdtSpreadsheetAddIn, xdtPresentation, xdtPresentationTemplate, xdtPresentationSlideshow, xdtPresentationAddIn }

Possible values

Declared in

.NET:
  • Namespace: SBOfficeCommon
  • Assembly: SecureBlackbox.Office
VCL:
  • Unit: SBOfficeCommon
Java:
  • Package: SecureBlackbox.Office.jar
C++:
  • sbofficecommon.h

Discuss this help topic in SecureBlackbox Forum