FMX.ActnList.TActionLink.CheckedLinked
Delphi
property CheckedLinked: Boolean read IsCheckedLinked;
C++
__property bool CheckedLinked = {read=IsCheckedLinked, nodefault};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
property | public | FMX.ActnList.pas FMX.ActnList.hpp |
FMX.ActnList | TActionLink |
Description
Determines whether a value of the Checked property of the action assigned to the action link should be distributed to the Checked property of the client of the action link.
CheckedLinked provides the following behavior:
- CheckedLinked returns
False
:
- If the action, assigned to the action link, belongs to TCustomViewAction and the component of this action equals the client of the action link.
- This means that a value of the Checked property of TCustomViewAction type actions is not distributed to the Checked property of a client of the action link.
- If the client does not support the Checked property.
- Otherwise, CheckedLinked returns
True
.
- This means that a value of the Checked property of a linked action is distributed to the Checked properties of a client of the action link.
See IsCheckedLinked.