FMX.Menus.TMenuItem.IsChecked

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property IsChecked: Boolean read FIsChecked write SetIsChecked stored IsCheckedStored default False;

C++

__property bool IsChecked = {read=FIsChecked, write=SetIsChecked, stored=IsCheckedStored, default=0};

Properties

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

Description

Specifies whether a check mark is displayed beside the text of the TMenuItem.

Use IsChecked to allow the TMenuItem to work like a check box. The menu item appears selected if IsChecked is True, and cleared otherwise.

Note: If AutoCheck is False, the menu item remains cleared even if IsChecked is True.

See Also