GC.Spread.Sheets Namespace > Worksheet type : getColumnVisible Method |
var instance = new GC.Spread.Sheets.Worksheet(name); var value; // Type: boolean value = instance.getColumnVisible(col, sheetArea);
true
if the column is visible in the sheet area; otherwise, false
.var visible = activeSheet.getColumnVisible(1, GC.Spread.Sheets.SheetArea.viewport); var width = activeSheet.getColumnWidth(1, GC.Spread.Sheets.SheetArea.viewport); alert(visible); alert(width);