Discuss this help topic in SecureBlackbox Forum

TSBGoogleDrivePropertyVisibility

Declared in     


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


Defines visibility the custom file properties in the Google Drive storage.

Declaration

[C#/Java]
    enum TSBGoogleDrivePropertyVisibility { gdpvPrivate = 0, gdpvPublic = 1 };

[VB.NET]
    Enum TSBGoogleDrivePropertyVisibility
        gdpvPrivate = 0
        gdpvPublic = 1
    End Enum

[Pascal]
    TSBGoogleDrivePropertyVisibility = (gdpvPrivate, gdpvPublic);

[C++]
    typedef uint8_t TSBGoogleDrivePropertyVisibilityRaw;
    typedef enum
    {
        gdpvPrivate = 0,
        gdpvPublic = 1
    } TSBGoogleDrivePropertyVisibility;

Possible values:

Declared in

.NET:
  • Namespace: SBGoogleDriveDataStorage
  • Assembly: SecureBlackbox.Cloud
VCL:
  • Unit: SBGoogleDriveDataStorage
Java:
  • Package: SecureBlackbox.Clound.jar
C++:
  • sbgoogledrivedatastorage.h

Discuss this help topic in SecureBlackbox Forum