find method

Contents
[ ]

find

Finds the cell containing with the input object.

Returns

Cell object.

def find(self, what, previous_cell):
    ...
ParameterTypeDescription
whatanyThe object to search for.
The type should be int,double,DateTime,string,bool.
previous_cellCellPrevious cell with the same object.
This parameter can be set to null if searching from the start.

Remarks

Returns null (Nothing) if no cell is found.

find

Finds the cell containing with the input object.

Returns

Cell object.

def find(self, what, previous_cell, find_options):
    ...
ParameterTypeDescription
whatanyThe object to search for.
The type should be int,double,DateTime,string,bool.
previous_cellCellPrevious cell with the same object.
This parameter can be set to null if searching from the start.
find_optionsFindOptionsFind options

Remarks

Returns null (Nothing) if no cell is found.

See Also