Gets whether the control displays the specified row or column. (This implementation always returns true.)
Syntax
Visual Basic (Declaration) | |
---|
Public Overridable Function GetVisible( _
ByVal index As Integer _
) As Boolean |
Parameters
- index
- Row or column index
Return Value
Boolean:
true if the row or column is displayed;
false otherwise
Example
This example specifies whether the column is visible.
C# | Copy Code |
---|
private void button4_Click(object sender, System.EventArgs e)
{
FarPoint.Win.Spread.Model.BaseSheetAxisModel baseModel;
bool b;
baseModel = (FarPoint.Win.Spread.Model.BaseSheetAxisModel)fpSpread1.ActiveSheet.Models.ColumnAxis;
baseModel.SetVisible(2, false);
b = baseModel.GetVisible(2);
listBox1.Items.Add(b.ToString());
} |
Visual Basic | Copy Code |
---|
Dim baseModel As FarPoint.Win.Spread.Model.BaseSheetAxisModel
Dim b As Boolean
baseModel = FpSpread1.ActiveSheet.Models.ColumnAxis
baseModel.SetVisible(2, False)
b = baseModel.GetVisible(2)
ListBox1.Items.Add(b.ToString()) |
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also