Spread Silverlight Documentation
GetRowVisible(Int32) Method
Example 


GrapeCity.Windows.SpreadSheet.Data Namespace > Worksheet Class > GetRowVisible Method : GetRowVisible(Int32) Method
The row index.
Gets whether the control displays the specified row.
Syntax
'Declaration
 
Public Overloads Function GetRowVisible( _
   ByVal row As System.Integer _
) As System.Boolean
'Usage
 
Dim instance As Worksheet
Dim row As System.Integer
Dim value As System.Boolean
 
value = instance.GetRowVisible(row)
public System.bool GetRowVisible( 
   System.int row
)

Parameters

row
The row index.

Return Value

Returns true if the row is visible in this sheet; otherwise, false.
Example
This example uses the GetRowVisible method.
listBox1.Items.Add(gcSpreadSheet1.Sheets[0].GetRowViewportCount().ToString());
listBox1.Items.Add(gcSpreadSheet1.Sheets[0].GetRowVisible(20).ToString());
listBox1.Items.Add(gcSpreadSheet1.Sheets[0].GetRowVisible(1, GrapeCity.Windows.SpreadSheet.Data.SheetArea.Cells).ToString());
ListBox1.Items.Add(GcSpreadSheet1.Sheets(0).GetRowViewportCount().ToString())
ListBox1.Items.Add(GcSpreadSheet1.Sheets(0).GetRowVisible(20).ToString())
ListBox1.Items.Add(GcSpreadSheet1.Sheets(0).GetRowVisible(1, GrapeCity.Windows.SpreadSheet.Data.SheetArea.Cells).ToString())
See Also

Reference

Worksheet Class
Worksheet Members
Overload List