Discuss this help topic in SecureBlackbox Forum
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++:
Discuss this help topic in SecureBlackbox Forum