Discuss this help topic in SecureBlackbox Forum

TElGoogleDriveProperties.IndexOf

TElGoogleDriveProperties     See also     


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


Returns the index of the specified property in the list.

Declaration

[C#]
    int IndexOf(TElGoogleDriveProperty Prop);
    int IndexOf(string Key, TSBGoogleDrivePropertyVisibility Visibility);

[VB.NET]
    Function IndexOf(ByVal Prop As TElGoogleDriveProperty) As Integer
    Function IndexOf(ByVal Key As String, ByVal Visibility As TSBGoogleDrivePropertyVisibility) As Integer

[Pascal]
    function IndexOf(Prop: TElGoogleDriveProperty): integer;
    function IndexOf(const Key: string; Visibility: TSBGoogleDrivePropertyVisibility): integer;

[C++]
    int32_t IndexOf(TElGoogleDriveProperty &Prop);
    int32_t IndexOf(TElGoogleDriveProperty *Prop);
    int32_t IndexOf(const std::string &Key, TSBGoogleDrivePropertyVisibility Visibility);

[PHP]
    integer IndexOf(TElGoogleDriveProperty $Prop)
    integer IndexOf(string $Key, integer $Visibility)

[Java]
    int indexOf(String Key, TSBGoogleDrivePropertyVisibility Visibility);
    int indexOf(TElGoogleDriveProperty Prop);

Parameters

  • Prop - the property to look for.
  • Key - the key to look for.
  • Visibility - the property's visibility status.

TSBGoogleDrivePropertyVisibility values:

Return value

    Returns the index of the property in the list. If the property (key) is not found, -1 is returned.

Description

    Use this method to get the index of the specified property in the list.

See also:     Exists    

Discuss this help topic in SecureBlackbox Forum