GC.Spread.Sheets Namespace > Worksheet type : showColumn Method |
var instance = new GC.Spread.Sheets.Worksheet(name); var value; // Type: any value = instance.showColumn(col, horizontalPosition);
function showColumn( col : number, horizontalPosition : HorizontalPosition ) : any;
$("#button1").click(function () { activeSheet.showRow(9, GC.Spread.Sheets.VerticalPosition.top); }); $("#button2").click(function(){ activeSheet.showColumn(9, GC.Spread.Sheets.HorizontalPosition.left); }); //Add button controls to page <input type="button" id="button1" value="button1"/> <input type="button" id="button2" value="button2"/>