TextBoxBase.SetBoundsCore(Int32, Int32, Int32, Int32, BoundsSpecified) Method
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.
Sets the specified bounds of the TextBoxBase control.
protected:
override void SetBoundsCore(int x, int y, int width, int height, System::Windows::Forms::BoundsSpecified specified);
protected override void SetBoundsCore (int x, int y, int width, int height, System.Windows.Forms.BoundsSpecified specified);
override this.SetBoundsCore : int * int * int * int * System.Windows.Forms.BoundsSpecified -> unit
Protected Overrides Sub SetBoundsCore (x As Integer, y As Integer, width As Integer, height As Integer, specified As BoundsSpecified)
Parameters
- height
- Int32
Not used.
- specified
- BoundsSpecified
A bitwise combination of the BoundsSpecified values.
Remarks
The TextBoxBase control uses the PreferredHeight property to set the bounds if the AutoSize property is true
and the Multiline property is false
.
Typically, the parameters that correspond to the bounds not included in the specified
parameter are passed in with their current values. For example, the Height, Width, or the X or Y properties of the Location property can be passed in with a reference to the current instance of the control. However all values passed in are honored and applied to the control.
The specified
parameter represents the elements of the controls Bounds changed by your application. For example, if you change the Size of the control, the specified
parameter value is the Size
value of BoundsSpecified. However, if the Size is adjusted in response to the Dock property being set, the specified
parameter value is the None
value of BoundsSpecified.
Notes to Inheritors
When overriding SetBoundsCore(Int32, Int32, Int32, Int32, BoundsSpecified) in a derived class, be sure to call the base class's SetBoundsCore(Int32, Int32, Int32, Int32, BoundsSpecified) method to force the bounds of the control to change. Derived classes can add size restrictions to the SetBoundsCore(Int32, Int32, Int32, Int32, BoundsSpecified) method.