New to Telerik UI for ASP.NET AJAXStart a free 30-day trial

Properties

Updated on May 20, 2026

SegmentedControl-specific properties to configure items, layout, size, selected value, and client-side events.

RadSegmentedControl Properties

NameReturn Type / Enum LinkDescription
ItemsTelerik.Web.UI.SegmentedControlItemsCollectionGets the collection of items (buttons) rendered inside the SegmentedControl.
LayoutModeTelerik.Web.UI.SegmentedControlLayoutModeGets/Sets the layout mode. Default is Compact.
SelectedValuestringGets/Sets the value of the pre-selected item. Must match the Value of one of the items.
SizeTelerik.Web.UI.SegmentedControlSizeGets/Sets the size of the segment buttons. Default is Medium.
ClientEventsTelerik.Web.UI.SegmentedControlClientEventsGets the client events configuration. Exposes OnLoad and OnChange.

SegmentedControlItem Properties

Each item in the Items collection is a SegmentedControlItem with the following properties:

NameTypeDescription
EnabledboolGets/Sets whether the button can be interacted with. Default is true.
IconstringGets/Sets the name of a Kendo UI theme icon rendered inside the button.
IconClassstringGets/Sets additional CSS class names appended to the icon element.
TextstringGets/Sets the visible label rendered inside the button.
ValuestringGets/Sets the identifier for the button. Used to set/read the selection and as an accessible label when no Text is provided.

Next Steps