Back to Devexpress

CheckListPropertiesBase.RepeatLayout Property

aspnet-devexpress-dot-web-dot-checklistpropertiesbase-2a56d3db.md

latest2.5 KB
Original Source

CheckListPropertiesBase.RepeatLayout Property

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

Declaration

csharp
[DefaultValue(RepeatLayout.Table)]
public RepeatLayout RepeatLayout { get; set; }
vb
<DefaultValue(RepeatLayout.Table)>
Public Property RepeatLayout As RepeatLayout

Property Value

TypeDefaultDescription
RepeatLayoutTable

One of the RepeatLayout values.

|

Remarks

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

The RepeatLayout property synchronizes its value with the editor’s ASPxCheckListBase.RepeatLayout property.

Example

aspx
<dx:ASPxRadioButtonList ID="radioButtonList" runat="server" DataSourceID="ProgLanguages"
    ValueField="ID" TextField="Name" RepeatColumns="4" RepeatLayout="Flow">
    ...
</dx:ASPxRadioButtonList>

Online Example

How to use the CheckBoxList and RadioButtonList editors to edit Model fields

Online Demo

Radio Button List

See Also

RepeatColumns

RepeatDirection

CheckListPropertiesBase Class

CheckListPropertiesBase Members

DevExpress.Web Namespace