| メンバ | 解説 |
|---|---|
| both | 印刷レイアウトをページの水平方向と垂直方向の両方にセンタリングします。 |
| horizontal | 印刷レイアウトをページの水平方向にセンタリングします。 |
| none | 印刷ページをセンタリングしません。 |
| vertical | 印刷レイアウトをページの垂直方向にセンタリングします。 |
| メンバ | 解説 |
|---|---|
| both | 印刷レイアウトをページの水平方向と垂直方向の両方にセンタリングします。 |
| horizontal | 印刷レイアウトをページの水平方向にセンタリングします。 |
| none | 印刷ページをセンタリングしません。 |
| vertical | 印刷レイアウトをページの垂直方向にセンタリングします。 |
activeSheet.setRowCount(3, GC.Spread.Sheets.SheetArea.viewport);
activeSheet.setColumnCount(3, GC.Spread.Sheets.SheetArea.viewport);
activeSheet.suspendPaint();
//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.resumePaint();
$("#button1").click(function () {
var printInfo = new GC.Spread.Sheets.Print.PrintInfo();
printInfo.columnStart(0);
printInfo.columnEnd(2);
printInfo.centering(GC.Spread.Sheets.Print.PrintCentering.horizontal);
activeSheet.printInfo(printInfo);
spread.print(0);
});activeSheet.setRowCount(3, GC.Spread.Sheets.SheetArea.viewport);
activeSheet.setColumnCount(3, GC.Spread.Sheets.SheetArea.viewport);
activeSheet.suspendPaint();
//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.resumePaint();
$("#button1").click(function () {
var printInfo = new GC.Spread.Sheets.Print.PrintInfo();
printInfo.columnStart(0);
printInfo.columnEnd(2);
printInfo.centering(GC.Spread.Sheets.Print.PrintCentering.horizontal);
activeSheet.printInfo(printInfo);
spread.print(0);
});Object
GC.Spread.Sheets.Print.PrintCentering