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