find method

find(self, what, previous_cell)

Finds the cell containing with the input object.

Returns

Cell object.


def find(self, what, previous_cell):
    ...
ParameterTypeDescription
whatSystem.ObjectThe object to search for.
The type should be int,double,DateTime,string,bool.
previous_cellaspose.cells.CellPrevious 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(self, what, previous_cell, find_options)

Finds the cell containing with the input object.

Returns

Cell object.


def find(self, what, previous_cell, find_options):
    ...
ParameterTypeDescription
whatSystem.ObjectThe object to search for.
The type should be int,double,DateTime,string,bool.
previous_cellaspose.cells.CellPrevious cell with the same object.
This parameter can be set to null if searching from the start.
find_optionsaspose.cells.FindOptionsFind options

Remarks

Returns null (Nothing) if no cell is found.

See Also