PrintPreviewDialog.Size Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the size of the form.
public:
property System::Drawing::Size Size { System::Drawing::Size get(); void set(System::Drawing::Size value); };
[System.ComponentModel.Browsable(false)]
public System.Drawing.Size Size { get; set; }
[<System.ComponentModel.Browsable(false)>]
member this.Size : System.Drawing.Size with get, set
Public Property Size As Size
Property Value
A Size that represents the size of the form.
- Attributes
Remarks
This property is not relevant for this class.
This property allows you to set both the height and width of the form at the same time instead of setting the Height and Width properties individually. If you want to set the size and location of a form, you can use the DesktopBounds property to size and locate the form based on desktop coordinates or use the Bounds property of the Control class to set the size and location of the form based on screen coordinates.