GcSpread.Sheets Namespace > Sheet type : getColumnVisible Method |
var instance = new GcSpread.Sheets.Sheet(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, GcSpread.Sheets.SheetArea.viewport); var width = activeSheet.getColumnWidth(1, GcSpread.Sheets.SheetArea.viewport); alert(visible); alert(width);