FMX.Menus.TMenuItem.RadioItem

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property RadioItem: Boolean read GetRadioItem write SetRadioItem stored RadioItemStored default False;

C++

__property bool RadioItem = {read=GetRadioItem, write=SetRadioItem, stored=RadioItemStored, default=0};

Properties

Type Visibility Source Unit Parent
property published
FMX.Menus.pas
FMX.Menus.hpp
FMX.Menus TMenuItem

Description

Specifies whether the TMenuItem is mutually exclusive with other menu items in its group.

Use RadioItem to make the menu item behave like a radio button with a group of other menu items. The group of menu items is the set of all menu items in a pop-up menu that have the same value of GroupIndex. When RadioItem is True, only one menu item in the group that contains the menu item can be selected at a time. The single selected menu item in the group is indicated by a check mark beside its text.

Note: RadioItem does not work for the top-level items in a main menu.

See Also