Form.Location Property

Definition

Gets or sets the Point that represents the upper-left corner of the Form in screen coordinates.

public:
 property System::Drawing::Point Location { System::Drawing::Point get(); void set(System::Drawing::Point value); };
[System.ComponentModel.SettingsBindable(true)]
public System.Drawing.Point Location { get; set; }
[<System.ComponentModel.SettingsBindable(true)>]
member this.Location : System.Drawing.Point with get, set
Public Property Location As Point

Property Value

The Point that represents the upper-left corner of the Form in screen coordinates.

Attributes

Remarks

Point is a structure, which means that it is a value type. If you access a property in Point, a copy of the property is returned. Therefore, changing the X or Y properties of the Point returned from the Location property will not affect the Left, Right, Top, or Bottom property values of the Form. To adjust these properties, set each property value individually, or set the Location property with a new Point.

The Location property gets or sets the Location property of the Control base class, and sets the Bindable property to true.

Applies to

See also