ListBox.SetBoundsCore Method
Assembly: System.Windows.Forms (in system.windows.forms.dll)
protected override void SetBoundsCore ( int x, int y, int width, int height, BoundsSpecified specified )
protected void SetBoundsCore ( int x, int y, int width, int height, BoundsSpecified specified )
protected override function SetBoundsCore ( x : int, y : int, width : int, height : int, specified : BoundsSpecified )
Not applicable.
Parameters
- x
The new Left property value of the control.
- y
The new Top property value of the control.
- width
The new Width property value of the control.
- height
The new Height property value of the control.
- specified
A bitwise combination of the BoundsSpecified values.
The height of the ListBox control increases and decreases by a multiple of the ItemHeight property. If height is a number that is not a multiple of ItemHeight, the height of the ListBox will change by the largest multiple that is less than height.
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 Size. However, if the Size is adjusted in response to the Dock property being set, the specified parameter value is None.
Notes to Inheritors: When overriding SetBoundsCore in a derived class, be sure to call the base class's SetBoundsCore method to force the bounds of the control to change. Derived classes can add size restrictions to the SetBoundsCore method.Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.