In This Topic
Gets a row on this sheet with a specific tag.
Syntax
'Declaration
Public Function GetRowFromTag( _
ByVal As Row, _
ByVal As Object _
) As Row
'Usage
Dim instance As SheetView
Dim rowToStart As Row
Dim tagToFind As Object
Dim value As Row
value = instance.GetRowFromTag(rowToStart, tagToFind)
public Row GetRowFromTag(
Row ,
object
)
Parameters
- rowToStart
- Row object in Rows collection from which to start (use null to start from beginning)
- tagToFind
- Tag object to identify the Row you are looking for
See Also