RadioButtonList::RepeatColumns Property

 

Gets or sets the number of columns to display in the RadioButtonList control.

Namespace:   System.Web.UI.WebControls
Assembly:  System.Web (in System.Web.dll)

public:
property int RepeatColumns {
	virtual int get();
	virtual void set(int value);
}

Property Value

Type: System::Int32

The number of columns to display in the RadioButtonList. The default is 0, which indicates that this property is not set.

Exception Condition
ArgumentOutOfRangeException

The number of columns is set to a negative value.

When the RepeatLayout property is set to Table, you can use this property to specify the number of columns that display items in the RadioButtonList control. If this property is not set, the RadioButtonList control displays all items in the list in a single column.

The following code example demonstrates how to use the RepeatColumns property to display the items of a RadioButtonList control in two columns.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 1.1
Return to top
Show: