This documentation is archived and is not being maintained.
Control.Top Property
.NET Framework (current version)
Gets or sets the distance, in pixels, between the top edge of the control and the top edge of its container's client area.
Namespace:
System.Windows.Forms Assembly:
System.Windows.Forms (in System.Windows.Forms.dll)
[<BrowsableAttribute(false )>]
member Top : int with get, set
Property Value
Type:
System.Int32 An Int32 representing the distance, in pixels, between the bottom edge of the control and the top edge of its container's client area.
The Top property value is equivalent to the Point.Y property of the Location property value of the control.
Changes made to the Height and Top property values cause the Bottom property value of the control to change.
The following code example creates three Button controls on a form and sets their size and location by using the various size-related and location-related properties. This example requires that you have a Form that has a width and height of at least 300 pixels.
No code example is currently available or this language may not be supported.
.NET Framework
Available since 1.1
Return to top