[]
Initializes a new instance of PaperSize with the specified paper kind, name, width, and height.
public PaperSize(PaperKind kind, string name, int width, int height)
| Type | Name | Description |
|---|---|---|
| PaperKind | kind | The paper kind. |
| string | name | The name of the paper size. |
| int | width | The width of the paper in hundredths of an inch. |
| int | height | The height of the paper in hundredths of an inch. |
Initializes a new instance of PaperSize with a custom paper kind and the specified name, width, and height.
public PaperSize(string name, int width, int height)
| Type | Name | Description |
|---|---|---|
| string | name | The name of the custom paper size. |
| int | width | The width of the paper in hundredths of an inch. |
| int | height | The height of the paper in hundredths of an inch. |