Discuss this help topic in SecureBlackbox Forum

TElGoogleDriveProperties.Exists

TElGoogleDriveProperties     See also     


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


Checks if the specified key is present in the list.

Declaration

[C#]
    bool Exists(string Key, TSBGoogleDrivePropertyVisibility Visibility);

[VB.NET]
    Function Exists(ByVal Key As String, ByVal Visibility As TSBGoogleDrivePropertyVisibility) As Boolean

[Pascal]
    function Exists(const Key: string; Visibility: TSBGoogleDrivePropertyVisibility): boolean;

[C++]
    bool Exists(const std::string &Key, TSBGoogleDrivePropertyVisibility Visibility);

[PHP]
    bool Exists(string $Key, integer $Visibility)

[Java]
    boolean exists(String Key, TSBGoogleDrivePropertyVisibility Visibility);

Parameters

  • Key - the key of the property.
  • Visibility - the visibility of the property.

TSBGoogleDrivePropertyVisibility values:

Return value

    Returns True if the property with the provided key exists, and False otherwise.

Description

    Use this method to check the if a property exists by its key.

See also:     IndexOf     ValueByKey    

Discuss this help topic in SecureBlackbox Forum