RepositoryItemRadioGroup.ItemsLayout Property
Gets or sets how items are arranged.
Namespace: DevExpress.XtraEditors.Repository
Assembly: DevExpress.XtraEditors.v24.1.dll
NuGet Package: DevExpress.Win.Navigation
Declaration
[DefaultValue(RadioGroupItemsLayout.Default)]
[DXCategory("Appearance")]
public RadioGroupItemsLayout ItemsLayout { get; set; }
Property Value
Type | Default | Description |
---|---|---|
DevExpress.XtraEditors.RadioGroupItemsLayout | Default | A value that specifies how items are arranged. |
Remarks
Two item arrangement modes are supported:
Column (Default)
Items are arranged down then across, in columns of the same size. Use the Columns property to specify the number of columns.
Flow
Items are arranged across then down, without the vertical item alignment applied.
To specify the distance between items, use the FlowLayoutItemHorzIndent and FlowLayoutItemVertIndent properties.
See Also