Form.Location 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.
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
.