JavaScript Editor jscript editor     Web designer 



Main Page

By default, the CheckBoxList control displays a single column of check boxes. However, you can specify any number of columns, and within the columns, you can specify how the items are ordered: vertically (the default) or horizontally. Vertical layout in three columns results in a layout such as the following:

В CopyCode imageCopy Code
A    D    G
B    E    H
C    F

Horizontal layout for the same items results in the following layout:

В CopyCode imageCopy Code
A    B    C
D    E    F
G    H

To specify column count and ordering

  1. Set the CheckBoxList control's RepeatColumns property to the number of columns you want.

  2. Set the RepeatDirection to Vertical or Horizontal. If you are setting the property in code, use the RepeatDirection enumeration, as shown in the following example:

    Visual BasicВ CopyCode imageCopy Code
    CheckBoxList1.RepeatDirection = RepeatDirection.Horizontal

    C#В CopyCode imageCopy Code
    CheckBoxList1.RepeatDirection = RepeatDirection.Horizontal;

See Also



JavaScript Editor jscript editor     Web designer