Specifies the paper size.
The constructor has 3 modes.
If there are 2 parameters, the parameters are width and height with a type of number;
If there is 1 parameter, the parameter is kind which is a GC.Spread.Sheets.Print.PaperKind type;
If there is no parameter, the result is the same as the second mode and the kind option is GC.Spread.Sheets.Print.PaperKind.letter.
Syntax
var value; // Type: any
value = GC.Spread.Sheets.Print.PaperSize(widthOrKind, height);
function PaperSize(
: undefined,
: number
) : any;
Parameters
- widthOrKind
- The width of the paper, in hundredths of an inch; or the kind of the paper and the type is GC.Spread.Sheets.Print.PaperKind.
- height
- The height of the paper, in hundredths of an inch.
See Also