Spread Silverlight Documentation
PreviousActualVisibleRow Method
Example 


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 System.Integer _
) As System.Integer
'Usage
 
Dim instance As Worksheet
Dim row As System.Integer
Dim value As System.Integer
 
value = instance.PreviousActualVisibleRow(row)
public System.int PreviousActualVisibleRow( 
   System.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())
Requirements

Target Platforms: Windows 7, Windows 8 Desktop, Windows Vista SP1 or later, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6

See Also

Reference

Worksheet Class
Worksheet Members

 

 


Copyright © GrapeCity, inc. All rights reserved.