GrapeCity.Xaml.SpreadSheet.Data
PreviousActualVisibleRow Method
Example 


GrapeCity.Xaml.SpreadSheet.Data Namespace > Worksheet Class : PreviousActualVisibleRow Method
The index of the current row.
Gets the index of the previous visible row from the current row.
Syntax
'Declaration
 
Public Function PreviousActualVisibleRow( _
   ByVal row As Integer _
) As Integer
'Usage
 
Dim instance As Worksheet
Dim row As Integer
Dim value As Integer
 
value = instance.PreviousActualVisibleRow(row)
public int PreviousActualVisibleRow( 
   int row
)

Parameters

row
The index of the current row.

Return Value

The index of the previous visible row.
Example
This example uses the PreviousActualVisibleRow method.
listBox1.Items.Add(gcSpreadSheet1.Sheets[0].PreviousActualVisibleColumn(10).ToString());
listBox1.Items.Add(gcSpreadSheet1.Sheets[0].PreviousActualVisibleRow(5).ToString());
ListBox1.Items.Add(GcSpreadSheet1.Sheets(0).PreviousActualVisibleColumn(10).ToString())
ListBox1.Items.Add(GcSpreadSheet1.Sheets(0).PreviousActualVisibleRow(5).ToString())
See Also

Reference

Worksheet Class
Worksheet Members