Discuss this help topic in SecureBlackbox Forum

TElGoogleDriveProperties.Add

TElGoogleDriveProperties     See also     


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


Adds a new property to the list.

Declaration

[C#]
    int Add(string Key, TSBGoogleDrivePropertyVisibility Visibility, string Value);

[VB.NET]
    Function Add(ByVal Key As String, ByVal Visibility As TSBGoogleDrivePropertyVisibility, ByVal Value As String) As Integer

[Pascal]
    function Add(const Key: string; Visibility: TSBGoogleDrivePropertyVisibility; const Value: string): integer;

[C++]
    int32_t Add(const std::string &Key, TSBGoogleDrivePropertyVisibility Visibility, const std::string &Value);

[PHP]
    integer Add(string $Key, integer $Visibility, string $Value)

[Java]
    int add(String Key, TSBGoogleDrivePropertyVisibility Visibility, String Value);

Parameters

  • Key - the key of the new property.
  • Visibility - the visibiity of the new property.
  • Value - the value of the new property.

TSBGoogleDrivePropertyVisibility values:

Return value

    Returns the index of the newly added property in the list on success, and -1 on failure.

Description

    Use this method to add a new property to the list.

See also:     Items    

Discuss this help topic in SecureBlackbox Forum