Spread WPF Documentation
SetColumnVisible Method
Example 


The column index.
The sheet area.
Set to true to display the column.
Sets whether a column in the specified sheet area is displayed.
Syntax
'Declaration
 
Public Sub SetColumnVisible( _
   ByVal column As System.Integer, _
   ByVal sheetArea As SheetArea, _
   ByVal value As System.Boolean _
) 
'Usage
 
Dim instance As Worksheet
Dim column As System.Integer
Dim sheetArea As SheetArea
Dim value As System.Boolean
 
instance.SetColumnVisible(column, sheetArea, value)
public void SetColumnVisible( 
   System.int column,
   SheetArea sheetArea,
   System.bool value
)

Parameters

column
The column index.
sheetArea
The sheet area.
value
Set to true to display the column.
Example
This example uses the SetColumnVisible method.
gcSpreadSheet1.Sheets[0].SetActiveViewport(0, 0);
gcSpreadSheet1.Sheets[0].SetColumnVisible(1, GrapeCity.Windows.SpreadSheet.Data.SheetArea.Cells, false);
gcSpreadSheet1.Sheets[0].SetRowVisible(3, GrapeCity.Windows.SpreadSheet.Data.SheetArea.Cells, false);
GcSpreadSheet1.Sheets(0).SetActiveViewport(0, 0)
GcSpreadSheet1.Sheets(0).SetColumnVisible(1, GrapeCity.Windows.SpreadSheet.Data.SheetArea.Cells, False)
GcSpreadSheet1.Sheets(0).SetRowVisible(3, GrapeCity.Windows.SpreadSheet.Data.SheetArea.Cells, False)
Requirements

Target Platforms: Windows 7, Windows 8 Desktop, Windows Vista SP1 or later, Windows Server 2000, Windows 2000 Professional (SP4), Windows XP (SP2), Windows 2008, Windows 2003 Server (SP1)

See Also

Reference

Worksheet Class
Worksheet Members

 

 


Copyright © GrapeCity, inc. All rights reserved.