'Declaration Function IsEmpty() As Boolean
'Usage Dim instance As ISheetAxisModel Dim value As Boolean value = instance.IsEmpty()
bool IsEmpty()
Return Value
Boolean: true if the sheet contains no rows or columns; false otherwise
'Declaration Function IsEmpty() As Boolean
'Usage Dim instance As ISheetAxisModel Dim value As Boolean value = instance.IsEmpty()
bool IsEmpty()
FarPoint.Win.Spread.Model.ISheetAxisModel isa;
isa = (FarPoint.Win.Spread.Model.ISheetAxisModel)fpSpread1.ActiveSheet.Models.ColumnAxis;
label1.Text = "Are there any columns in the spreadsheet = " + isa.IsEmpty().ToString();
Dim isa As FarPoint.Win.Spread.Model.ISheetAxisModel isa = FpSpread1.ActiveSheet.Models.ColumnAxis Label1.Text = "Are there any columns in the spreadsheet = " & isa.IsEmpty().ToString()