aspnet-devexpress-dot-web-dot-aspxchecklistbase-dce97838.md
Gets or sets the layout of the check box editor’s contents.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
[DefaultValue(RepeatLayout.Table)]
public RepeatLayout RepeatLayout { get; set; }
<DefaultValue(RepeatLayout.Table)>
Public Property RepeatLayout As RepeatLayout
| Type | Default | Description |
|---|---|---|
| RepeatLayout | Table |
One of the RepeatLayout values.
|
Use this property to specify whether the check box editor’s elements (the text label and check mark) are displayed in a table. If this property is set to Table , the elements are displayed in a table. If this property is set to Flow , the control shows elements without a table structure.
Note
This property is a wrapper of the CheckListPropertiesBase.RepeatLayout property.
<dx:ASPxRadioButtonList ID="radioButtonList" runat="server" DataSourceID="ProgLanguages"
ValueField="ID" TextField="Name" RepeatColumns="4" RepeatLayout="Flow">
...
</dx:ASPxRadioButtonList>
How to use the CheckBoxList and RadioButtonList editors to edit Model fields
See Also