Discuss this help topic in SecureBlackbox Forum

TSBGoogleDocType

Declared in     


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


Specifies google document types.

Declaration

[C#/Java]
    enum TSBGoogleDocType { gdtDocument = 0, gdtSpreadsheet = 1, gdtPresentation = 2, gdtUnknown = 3 };

[VB.NET]
    Enum TSBGoogleDocType
        gdtDocument = 0
        gdtSpreadsheet = 1
        gdtPresentation = 2
        gdtUnknown = 3
    End Enum

[Pascal]
    TSBGoogleDocType = (gdtDocument, gdtSpreadsheet, gdtPresentation, gdtUnknown);

[C++]
    typedef uint8_t TSBGoogleDocTypeRaw;
    typedef enum { gdtDocument = 0, gdtSpreadsheet = 1, gdtPresentation = 2, gdtUnknown = 3 } TSBGoogleDocType;

Description

Possible values:


Declared in

.NET:
  • Namespace: SBGoogleDataStorage
  • Assembly: SecureBlackbox.Cloud
VCL:
  • Unit: SBGoogleDataStorage
Java:
  • Package: SecureBlackbox.Cloud.jar
C++:
  • sbgoogledatastorage.h

Discuss this help topic in SecureBlackbox Forum