Gets or sets the size of paper for print.
[Visual Basic]
Public Property PaperSize As SizeF
[C#]
public System.Drawing.SizeF PaperSize {get; set;}
Property Value
Size of paper. Unit to be used is millimeter.
Example
How to set the size of paper as 297 * 210 millimeters.
graphBuild.PaperSize = New SizeF(297F, 210F)
graphBuild.PaperSize = new SizeF(297F, 210F);
See Also
AwGraphBuild Class | Asterworld.Graph Namespace