Skip to main content
A newer version of this page is available. .

RadioGroup.AutoSizeInLayoutControl Property

Gets or sets whether the editor’s width is changed to display the control’s first item in its entirety. This property is in effect when the editor resides within a LayoutControl.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v19.2.dll

Declaration

[DXCategory("Properties")]
[Browsable(true)]
[DefaultValue(false)]
public override bool AutoSizeInLayoutControl { get; set; }

Property Value

Type Default Description
Boolean **false**

true if auto-size mode is enabled; otherwise, false.

Remarks

When an editor is displayed within a LayoutControl, you can use the AutoSizeInLayoutControl property to enable auto-size mode. In auto-size mode, the control’s size is automatically changed to completely display the control’s first item.

The layout control allows you to set size constraints for controls, specifying the range in which the control’s size can vary. See the Size Constraints topic for more information.

Example

The following code shows how to enable the auto-size feature for a CheckEdit within a LayoutControl, and center the CheckEdit within the corresponding layout item.

LayoutControl_CheckEdit_AlignHorz

using DevExpress.XtraLayout;

checkEdit1.AutoSizeInLayoutControl = true;
layoutControlItem2.SizeConstraintsType = SizeConstraintsType.SupportHorzAlignment;
layoutControlItem2.ContentHorzAlignment = DevExpress.Utils.HorzAlignment.Center;
See Also