'Declaration Public Sub SetRowVisible( _ ByVal row As Integer, _ ByVal sheetArea As SheetArea, _ ByVal value As Boolean _ )
Parameters
- row
- The row index.
- sheetArea
- The sheet area.
- value
- Set to
true
to display the specified row.
true
to display the specified row.
'Declaration Public Sub SetRowVisible( _ ByVal row As Integer, _ ByVal sheetArea As SheetArea, _ ByVal value As Boolean _ )
true
to display the specified row.gcSpreadSheet1.Sheets[0].SetActiveViewport(0, 0); gcSpreadSheet1.Sheets[0].SetColumnVisible(1, GrapeCity.Xaml.SpreadSheet.Data.SheetArea.Cells, false); gcSpreadSheet1.Sheets[0].SetRowVisible(3, GrapeCity.Xaml.SpreadSheet.Data.SheetArea.Cells, false);
GcSpreadSheet1.Sheets(0).SetActiveViewport(0, 0) GcSpreadSheet1.Sheets(0).SetColumnVisible(1, GrapeCity.Xaml.SpreadSheet.Data.SheetArea.Cells, False) GcSpreadSheet1.Sheets(0).SetRowVisible(3, GrapeCity.Xaml.SpreadSheet.Data.SheetArea.Cells, False)