Discuss this help topic in SecureBlackbox Forum

TElGoogleDriveDataStorageObject.Move

TElGoogleDriveDataStorageObject     See also     


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


Moves the object to the specified location.

Declaration

[C#]
    void Move(TElGoogleDriveFolder Destination);
    void Move(TElGoogleDriveFolder[] Destinations);

[VB.NET]
    Sub Move(ByVal Destination As TElGoogleDriveFolder)
    Sub Move(ByVal Destinations As TElGoogleDriveFolder[])

[Pascal]
    procedure Move(Destination: TElGoogleDriveFolder);
    procedure Move(Destinations: array of TElGoogleDriveFolder);

[C++]
    void Move(TElGoogleDriveFolder &Destination);
    void Move(TElGoogleDriveFolder *Destination);
    void Move(const std::vector<TElGoogleDriveFolderHandle> &Destinations);

[PHP]
    void Move(TElGoogleDriveFolder $Destination)
    void Move(array of TElGoogleDriveFolder|NULL &$Destinations)

[Java]
    void move(TElGoogleDriveFolder Destination);
    void move(TElGoogleDriveFolder[] Destinations);

Parameters

  • Destination - specifies the destination folder.
  • Destinations - use this parameter to specify multiple destinations.

Description

    Use this method to move the object to the specified folder(s).

See also:     Copy     Delete     Rename    

Discuss this help topic in SecureBlackbox Forum