'Declaration Public Function GetCellFromTag( _ ByVal cellToStart As Cell, _ ByVal tagToFind As Object _ ) As Cell
'Usage Dim instance As SheetView Dim cellToStart As Cell Dim tagToFind As Object Dim value As Cell value = instance.GetCellFromTag(cellToStart, tagToFind)
public Cell GetCellFromTag( Cell cellToStart, object tagToFind )
Parameters
- cellToStart
- Cell object in Cells collection from which to start (pass null to start from beginning)
- tagToFind
- Tag object to identify the cell you are looking for
Return Value
Cell object containing the cell with the specified tag, or null if no cell is found