Sets whether the control displays the specified row or column.
            
            
            
 Syntax
Syntax
            Parameters
- index
- Row or column index
- value
- Whether the control displays the specified row or column
 
            
						
            
            
            
             Example
Example
This example sets whether the specified column is visible.
             
| C# |  Copy Code | 
|---|
| FarPoint.Win.Spread.Model.DefaultSheetAxisModel dsam = new FarPoint.Win.Spread.Model.DefaultSheetAxisModel();
object o;
dsam = (FarPoint.Win.Spread.Model.DefaultSheetAxisModel)fpSpread1.ActiveSheet.Models.ColumnAxis;
dsam.SetVisible(1, false); | 
| Visual Basic |  Copy Code | 
|---|
| Dim dsam As New FarPoint.Win.Spread.Model.DefaultSheetAxisModel()
dsam = FpSpread1.ActiveSheet.Models.ColumnAxis
dsam.SetVisible(1, False) | 
 Requirements
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
See Also