Spread WPF Documentation
GetColumnVisible(Int32,SheetArea) Method
Example 


The column index.
The sheet area.
Gets whether a column in the specified sheet area is displayed.
Syntax
'Declaration
 
Public Overloads Function GetColumnVisible( _
   ByVal column As System.Integer, _
   ByVal sheetArea As SheetArea _
) As System.Boolean
'Usage
 
Dim instance As Worksheet
Dim column As System.Integer
Dim sheetArea As SheetArea
Dim value As System.Boolean
 
value = instance.GetColumnVisible(column, sheetArea)
public System.bool GetColumnVisible( 
   System.int column,
   SheetArea sheetArea
)

Parameters

column
The column index.
sheetArea
The sheet area.

Return Value

Returns true if the column is visible in the sheet area; otherwise, false.
Example
This example uses the GetColumnVisible method.
listBox1.Items.Add(gcSpreadSheet1.Sheets[0].GetColumnVisible(4).ToString());
listBox1.Items.Add(gcSpreadSheet1.Sheets[0].GetColumnVisible(2,GrapeCity.Windows.SpreadSheet.Data.SheetArea.ColumnHeader).ToString());
listBox1.Items.Add(gcSpreadSheet1.Sheets[0].GetColumnWidth(1).ToString());
listBox1.Items.Add(gcSpreadSheet1.Sheets[0].GetColumnWidth(3, GrapeCity.Windows.SpreadSheet.Data.SheetArea.ColumnHeader).ToString());
listBox1.Items.Add(gcSpreadSheet1.Sheets(0).GetColumnVisible(4).ToString())
listBox1.Items.Add(gcSpreadSheet1.Sheets(0).GetColumnVisible(2,GrapeCity.Windows.SpreadSheet.Data.SheetArea.ColumnHeader).ToString())
listBox1.Items.Add(gcSpreadSheet1.Sheets(0).GetColumnWidth(1).ToString())
listBox1.Items.Add(gcSpreadSheet1.Sheets(0).GetColumnWidth(3, GrapeCity.Windows.SpreadSheet.Data.SheetArea.ColumnHeader).ToString())
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
Overload List

 

 


Copyright © GrapeCity, inc. All rights reserved.