Discuss this help topic in SecureBlackbox Forum

TElBoxComments.IndexOf

TElBoxComments     See also     


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


Returns the index of the comment.

Declaration

[C#]
    int IndexOf(string ID);
    int IndexOf(TElBoxComment Comment);

[VB.NET]
    Function IndexOf(ByVal ID As String) As Integer
    Function IndexOf(ByVal Comment As TElBoxComment) As Integer

[Pascal]
    function IndexOf(const ID: string): Integer;
    function IndexOf(Comment: TElBoxComment): Integer;

[C++]
    int IndexOf(string ID);
    int IndexOf(TElBoxComment Comment);

[Java]
    not implemented

Parameters

  • ID - comment's identifier.
  • Comment - the comment object which index is requested.

Description

    Given the comment or its ID, this method returns the comment's index in the list.

See also:     Item    

Discuss this help topic in SecureBlackbox Forum