'Declaration Public Function GetRowFromTag( _ ByVal rowToStart As Row, _ ByVal tagToFind 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 rowToStart, object tagToFind )
Parameters
- rowToStart
- Row object in Rows collection from which to start (pass null to start from beginning)
- tagToFind
- Tag object to identify the Row you are looking for
Return Value
Row object corresponding to the tag