Discuss this help topic in SecureBlackbox Forum

TSBOfficeBinaryDocumentType

Declared in     


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


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:
  • Unit: SBOfficeCommon
Java:
  • Package: SecureBlackbox.Office.jar
C++:
  • sbofficecommon.h

Discuss this help topic in SecureBlackbox Forum