Cells.Find

Find(object, Cell)

Finds the cell containing with the input object.

public Cell Find(object what, Cell previousCell)
ParameterTypeDescription
whatObjectThe object to search for. The type should be int,double,DateTime,string,bool.
previousCellCellPrevious cell with the same object. This parameter can be set to null if searching from the start.

Return Value

Cell object.

Remarks

Returns null (Nothing) if no cell is found.

See Also


Find(object, Cell, FindOptions)

Finds the cell containing with the input object.

public Cell Find(object what, Cell previousCell, FindOptions findOptions)
ParameterTypeDescription
whatObjectThe object to search for. The type should be int,double,DateTime,string,bool.
previousCellCellPrevious cell with the same object. This parameter can be set to null if searching from the start.
findOptionsFindOptionsFind options

Return Value

Cell object.

Remarks

Returns null (Nothing) if no cell is found.

See Also