CGridView:FindRow


The FindRow method returns the row number containing the specified string. By default, the search is performed in the first left heading column at index 0. You can also search another left heading at column index -1, -2, etc., or the grid body starting at column 1.

Syntax

nRow = CGridView:FindRow( strName )

nRow = CGridView:FindRow( strName, nCol )

bullet.gif    Where strName is the string to locate.

bullet.gif    Optionally, nCol specifies a different column to search. If this is omitted, only column 0 is searched.

bullet.gif    nRow is returned as the index of the row found. On error, -10 is returned, as it is unlikely a grid has more than 10 top rows.

Example

The following script attaches a grid window and finds a named row:

G = attach_gridview()

-- attaches the top-most grid window from Mira

nRow = G:FindRow("my row title")

-- returns the row with side heading "my row title".

Related Topics

CGridView class, GetRow, GetStr, FindCol


Mira Pro x64 Script User's Guide, Copyright Ⓒ 2023 Mirametrics, Inc. All Rights Reserved.