Control.Bottom Property
Gets the distance, in pixels, between the bottom 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)
The value of this property is equal to the sum of the Top property value, and the Height property value.
The Bottom property is a read-only property. You can manipulate this property value by changing the value of the Top or Height properties or calling the SetBounds, SetBoundsCore, UpdateBounds, or SetClientSizeCore methods.
The following code example uses the Bottom property to define the lower limit of a TextBox control relative to the client area of the container.
// This example demonstrates how to use the KeyUp event with the Help class to display // pop-up style help to the user of the application. When the user presses F1, the Help // class displays a pop-up window, similar to a ToolTip, near the control. This example assumes // that a TextBox control, named textBox1, has been added to the form and its KeyUp // event has been contected to this event handler method. private void textBox1_KeyUp(object sender, System.Windows.Forms.KeyEventArgs e) { // Determine whether the key entered is the F1 key. Display help if it is. if(e.KeyCode == Keys.F1) { // Display a pop-up help topic to assist the user. Help.ShowPopup(textBox1, "Enter your first name", new Point(textBox1.Right, this.textBox1.Bottom)); } }
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.