'Usage Dim instance As DefaultSheetAxisModel Dim index As Integer Dim value As Boolean value = instance.GetVisible(index)
Parameters
- index
- Row or column index
Return Value
Boolean: true if the row or column is displayed; false otherwise
'Usage Dim instance As DefaultSheetAxisModel Dim index As Integer Dim value As Boolean value = instance.GetVisible(index)
FarPoint.Win.Spread.Model.DefaultSheetAxisModel dsam = new FarPoint.Win.Spread.Model.DefaultSheetAxisModel(); bool b; dsam = (FarPoint.Win.Spread.Model.DefaultSheetAxisModel)fpSpread1.ActiveSheet.Models.ColumnAxis; b = dsam.GetVisible(2); listBox1.Items.Add(b.ToString());
Dim dsam As New FarPoint.Win.Spread.Model.DefaultSheetAxisModel() Dim b As Boolean dsam = fpSpread1.ActiveSheet.Models.ColumnAxis b = dsam.GetVisible(2) ListBox1.Items.Add(b.ToString())