Discuss this help topic in SecureBlackbox Forum

TSBDropboxImageSize

Declared in     


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


Specifies possible thumbnail sizes (in pixels) for images in Dropbox.

Declaration

[C#]
    public enum TSBDropboxImageSize { disUnknown = 0, disDefault = 1, disXS = 2, disS = 3, disM = 4, disL = 5, disXL = 6 };

[VB.NET]
    Enum TSBDropboxImageSize
        disUnknown = 0
        disDefault = 1
        disXS = 2
        disS = 3
        disM = 4
        disL = 5
        disXL = 6
    End Enum

[Pascal]
    TSBDropboxImageSize = (disDefault, disXS, disS, disM, disL, disXL);

[C++]
    typedef uint8_t TSBDropboxImageSizeRaw;
    typedef enum { disUnknown = 0, disDefault = 1, disXS = 2, disS = 3, disM = 4, disL = 5, disXL = 6 } TSBDropboxImageSize;

[PHP]
    class TSBDropboxImageSize extends TSBBaseEnum {
        const disUnknown = 0;
        const disDefault = 1;
        const disXS = 2;
        const disS = 3;
        const disM = 4;
        const disL = 5;
        const disXL = 6;
    }

[Java]
    public enum TSBDropboxImageSize { disUnknown, disDefault, disXS, disS, disM, disL, disXL }

Possible values

Declared in

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

Discuss this help topic in SecureBlackbox Forum