RowNumber
This property sets or returns the actual number of row.
Syntax
RowNumber (RowIndex as Long) as Long
Parameter | Description |
---|---|
RowIndex | Zero-based index of row |
Sample Code
Private Sub Tabelle_ValidateCell(pTable as SCBCdrPROJLib.SCBCdrTable, pWorkdoc As_ SCBCdrPROJLib.SCBCdrWorkdoc, ByVal Row as Long, ByVal Column as Long, pValid as Boolean)
Dim nCurrentRow, nRow, nLine as Integer
While (nLine < pTable.RowCount) And (nRow = nCurrentRow)
nRow = pTable.RowNumber(nLine)
nLine = nLine + 1
Wend
End Sub