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

RepositoryItemRadioGroup.ItemsLayout Property

Gets or sets how items are arranged.

Namespace: DevExpress.XtraEditors.Repository

Assembly: DevExpress.XtraEditors.v18.2.dll

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 RepositoryItemRadioGroup.Columns property to specify the number of columns.

    radioGroup-ColumnLayout

  • Flow

    Items are arranged across then down, without the vertical item alignment applied.

    radioGroup-FlowLayout

See Also