Spread Silverlight Documentation
GetActiveRowViewportIndex Method (Worksheet)
Example 


GrapeCity.Windows.SpreadSheet.Data Namespace > Worksheet Class : GetActiveRowViewportIndex Method
Gets the index of the active row viewport.
Syntax
'Declaration
 
Public Function GetActiveRowViewportIndex() As System.Integer
'Usage
 
Dim instance As Worksheet
Dim value As System.Integer
 
value = instance.GetActiveRowViewportIndex()
public System.int GetActiveRowViewportIndex()

Return Value

The index of the active row viewport.
Example
This example uses the GetActiveRowViewportIndex method.
listBox1.Items.Add(gcSpreadSheet1.Sheets[0].GetActiveColumnViewportIndex().ToString());
listBox1.Items.Add(gcSpreadSheet1.Sheets[0].GetActiveRowViewportIndex().ToString());
listBox1.Items.Add(gcSpreadSheet1.Sheets[0].GetActualColumnVisible(5,GrapeCity.Windows.SpreadSheet.Data.SheetArea.Cells).ToString());
listBox1.Items.Add(gcSpreadSheet1.Sheets(0).GetActiveColumnViewportIndex().ToString())
listBox1.Items.Add(gcSpreadSheet1.Sheets(0).GetActiveRowViewportIndex().ToString())
listBox1.Items.Add(gcSpreadSheet1.Sheets(0).GetActualColumnVisible(5,GrapeCity.Windows.SpreadSheet.Data.SheetArea.Cells).ToString())
See Also

Reference

Worksheet Class
Worksheet Members