SplitContainer.AutoSize 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.
Gets or sets a value indicating whether the SplitContainer is automatically resized to display its entire contents. This property is not relevant to this class.
public:
virtual property bool AutoSize { bool get(); void set(bool value); };
[System.ComponentModel.Browsable(false)]
public override bool AutoSize { get; set; }
[<System.ComponentModel.Browsable(false)>]
member this.AutoSize : bool with get, set
Public Overrides Property AutoSize As Boolean
Property Value
true
if the SplitContainer is automatically resized; otherwise, false
.
- Attributes
Remarks
The contents of a control may change for many reasons; including display data changes; addition of child controls; layout and padding changes; or system font, language, or resolution changes. If the AutoSize property is set to true
, the SplitContainer will resize automatically to encompass its contents, although it will never be resized to be smaller than its original Size. This operation will maintain the control's Padding. This property is not relevant to this class.