NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

PaperSize Constructor

Initializes a new instance of the PaperSize class.

[Visual Basic]
Public Sub New( _
   ByVal name As String, _
   ByVal width As Integer, _
   ByVal height As Integer _
)
[C#]
public PaperSize(
   string name,
   int width,
   int height
);
[C++]
public: PaperSize(
   String* name,
   int width,
   int height
);
[JScript]
public function PaperSize(
   name : String,
   width : int,
   height : int
);

Parameters

name
The name of the paper.
width
The width of the paper, in hundredths of an inch.
height
The height of the paper, in hundredths of an inch.

See Also

PaperSize Class | PaperSize Members | System.Drawing.Printing Namespace