findObject

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

The findObject method of the JadeTableRow class searches the itemObject property value of every cell in the row referenced by this object for the value specified in the object parameter, starting from the column specified in the column parameter value.

If the column parameter contains a zero (0) value indicating that it is not specified, the column is treated as the first column; that is, the column value is set to 1.

If the specified object is found, this method returns true and the column 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.accessRow(table1.row).findObject(obj, column);