RepeatLayout Property

UltimateSearch

Collapse imageExpand ImageCopy imageCopyHover image
Gets or sets the layout of radio buttons within the group.

Namespace: Karamasoft.WebControls.UltimateSearch
Assembly: UltimateSearch (in UltimateSearch.dll) Version: 3.7.4186.26690

Syntax

C#
public override RepeatLayout RepeatLayout { get; set; }
Visual Basic
Public Overrides Property RepeatLayout As RepeatLayout
	Get
	Set
Visual C++
public:
virtual property RepeatLayout RepeatLayout {
	RepeatLayout get () override;
	void set (RepeatLayout value) override;
}

Field Value

One of the RepeatLayout values. The default is Flow.

Remarks

Use this property to specify whether the items in the RadioButtonList control are displayed in a table. If this property is set to RepeatLayout.Table, the items in the list are displayed in a table. If this property is set to RepeatLayout.Flow, the items in the list are displayed without a table structure.

See Also