GcSpread.Sheets Namespace > PrintInfo type : headerLeft Method |
var instance = new GcSpread.Sheets.PrintInfo(); var returnValue; // Type: string returnValue = instance.headerLeft(value);
function headerLeft( value : string ) : string;
activeSheet.setRowCount(3, GcSpread.Sheets.SheetArea.viewport); activeSheet.setColumnCount(3, GcSpread.Sheets.SheetArea.viewport); activeSheet.isPaintSuspended(true); //set value for (var r = 0, rc = activeSheet.getRowCount(); r < rc; r++) { for (var c = 0, cc = activeSheet.getColumnCount(); c < cc; c++) { activeSheet.setValue(r, c, r + c); } } activeSheet.isPaintSuspended(false); $("#button1").click(function () { activeSheet.printInfo().headerLeft("It is &T."); spread.print(0); });