SpreadJS Documentation
PaperSize type
GC.Spread.Sheets.Print Namespace : PaperSize type
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 instance = new GC.Spread.Sheets.Print.PaperSize(widthOrKind, height);
function PaperSize;
Example
var printInfo = new GC.Spread.Sheets.Print.PrintInfo();
printInfo.headerLeft("Header Left");
printInfo.paperSize(new GC.Spread.Sheets.Print.PaperSize(GC.Spread.Sheets.Print.PaperKind.a4));
spread.print(0);
Inheritance Hierarchy

Object
   GC.Spread.Sheets.Print.PaperSize

Constructors
 NameDescription
public ConstructorSpecifies 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.  
Top
Methods
 NameDescription
public MethodGets the paper size, in hundredths of an inch.  
public MethodGets or sets the height of the paper, in hundredths of an inch.  
public MethodGets or sets the kind of the paper.  
public MethodGets or sets the width of the paper, in hundredths of an inch.  
Top
See Also

Reference

GC.Spread.Sheets.Print Namespace