Parameters
- row
- The index of the current row.
Return Value
The index of the next visible row.
int j; j = 0; for (int i=0;i<gcSpreadSheet1.Sheets[0].RowCount -1;i++) { j = gcSpreadSheet1.Sheets[0].NextActualVisibleRow(j); listBox1.Items.Add(j.ToString()); }
Dim j As Integer j = 0 For i As Integer = 0 To GcSpreadSheet1.Sheets(0).RowCount - 1 j = GcSpreadSheet1.Sheets(0).NextActualVisibleRow(j) ListBox1.Items.Add(j.ToString()) Next