findObject

findObject(object: Object;
           row:    Integer io): Boolean;

The findObject method of the JadeTableColumn class searches the itemObject property value of every cell in the column referenced by this object for the value specified in the object parameter, starting from the row specified in the row parameter value. If the row parameter contains a zero (0) value indicating that it is not specified, the row is treated as the first row; that is, the row value is set to 1.

If the specified object is found, this method returns true and the row of the cell that contains the specified object. If the object is not found, this method returns false.

The code fragment in the following example shows the use of the findObject method.

bool := table1.accessColumn(table1.column).findObject(obj, row);