find method
Contents
[
Hide
]find
Finds the cell containing with the input object.
Returns
Cell object.
def find(self, what, previous_cell):
...
Parameter | Type | Description |
---|---|---|
what | any | The object to search for. The type should be int,double,DateTime,string,bool. |
previous_cell | Cell | Previous 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):
...
Parameter | Type | Description |
---|---|---|
what | any | The object to search for. The type should be int,double,DateTime,string,bool. |
previous_cell | Cell | Previous cell with the same object. This parameter can be set to null if searching from the start. |
find_options | FindOptions | Find options |
Remarks
Returns null (Nothing) if no cell is found.
See Also
- module
aspose.cells
- class
Cells