Discuss this help topic in SecureBlackbox Forum

TElGoogleDriveDataStorage.GetObjectThumbnail

TElGoogleDriveDataStorage     See also     


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


Returns object's thumbnail.

Declaration

[C#]
    bool GetObjectThumbnail(TElGoogleDriveDataStorageObject Obj, System.IO.Stream Stream);

[VB.NET]
    Function GetObjectThumbnail(ByVal Obj As TElGoogleDriveDataStorageObject, ByVal Stream As System.IO.Stream) As Boolean

[Pascal]
    function GetObjectThumbnail(Obj: TElGoogleDriveDataStorageObject; Stream: TStream): Boolean;

[C++]
    bool GetObjectThumbnail(TElGoogleDriveDataStorageObject &Obj, TStream &Stream);
    bool GetObjectThumbnail(TElGoogleDriveDataStorageObject *Obj, TStream *Stream);

[PHP]
    bool GetObjectThumbnail(TElGoogleDriveDataStorageObject $Obj, TStream $Stream)

[Java]
    boolean getObjectThumbnail(TElGoogleDriveDataStorageObject Obj, TElStream Stream);

Parameters

  • Obj - the object for which a thumbnail is requested.
  • Stream - the data stream where the thumbnail image is saved.

Return value

    Returns True if the thumbnail for the specified object exists and it was successfully downloaded. Returns False otherwise.

Description

    Use this method to retrieve a thumbnail for the specified file.

See also:     AcquireObject    

Discuss this help topic in SecureBlackbox Forum