In This Topic
Gets a cell with a specific tag on the sheet.
Syntax
'Declaration
Public Function GetCellFromTag( _
ByVal As Cell, _
ByVal 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 ,
object
)
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
See Also