[]
• new PaperSize(widthOrKind?
, height?
)
纸张尺寸 该构造函数有3种模式 如果有2个参数,参数为宽度和高度,类型为数字 如果有1个参数,该参数为种类,是GC.Spread.Sheets.Print.PaperKind类型 如果没有参数,结果与第二种模式相同,种类选项为GC.Spread.Sheets.Print.PaperKind.letter
代码示例
var printInfo = new GC.Spread.Sheets.Print.PrintInfo();
printInfo.pageHeaderFooter({
normal: {
header: {
left: "Header Left"
}
}
});
printInfo.paperSize(new GC.Spread.Sheets.Print.PaperSize(GC.Spread.Sheets.Print.PaperKind.a4));
spread.print(0);
属性名 | 类型 |
---|---|
widthOrKind? |
number |
height? |
number |
▸ getPageSize(kind
): PrintSize
获取纸张尺寸,以百分之一英寸为单位
代码示例
var paperSize = new GC.Spread.Sheets.Print.PaperSize();
console.log(paperSize.getPageSize(GC.Spread.Sheets.Print.PaperKind.a4)); // Get the size of a4 paper.
console.log(paperSize.getPageSize(GC.Spread.Sheets.Print.PaperKind.a5)); // Get the size of a5 paper.
属性名 | 类型 | 说明 |
---|---|---|
kind |
PaperKind |
纸张种类 |
The size which contains width and height of the paper.
▸ height(value?
): any
获取或设置纸张的高度,以百分之一英寸为单位
代码示例
var paperSize = new GC.Spread.Sheets.Print.PaperSize(GC.Spread.Sheets.Print.PaperKind.a4);
var height = paperSize.height(); // Get the height of the paper.
paperSize.height(height / 2); // Set the height of paper.
属性名 | 类型 |
---|---|
value? |
number |
any
如果未设置任何值,则返回纸张的高度;否则,返回纸张尺寸
▸ kind(value?
): any
获取或设置纸张的种类
代码示例
var paperSize = new GC.Spread.Sheets.Print.PaperSize(GC.Spread.Sheets.Print.PaperKind.a4);
console.log(paperSize.kind()); // Get the kind of the paper.
paperSize.kind(GC.Spread.Sheets.Print.PaperKind.a5); // Set the kind of paper.
属性名 | 类型 |
---|---|
value? |
PaperKind |
any
如果未设置任何值,则返回纸张类型;否则,返回纸张尺寸
▸ width(value?
): any
获取或设置纸张的宽度,以百分之一英寸为单位
代码示例
var paperSize = new GC.Spread.Sheets.Print.PaperSize(GC.Spread.Sheets.Print.PaperKind.a4);
var width = paperSize.width(); // Get the width of the paper.
paperSize.width(width / 2); // Set the width of paper.
属性名 | 类型 | 说明 |
---|---|---|
value? |
number |
纸张的宽度 |
any
如果未设置任何值,则返回纸张的宽度;否则,返回纸张尺寸