FMX.ActnList.TActionLink.VisibleLinked
Delphi
property VisibleLinked: Boolean read IsVisibleLinked;
C++
__property bool VisibleLinked = {read=IsVisibleLinked, 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 Visible property of the action assigned to the action link should be distributed to the Visible property of the client of the action link.
VisibleLinked provides the following behavior:
- VisibleLinked 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 Visible property of TCustomViewAction type actions is not distributed to the Visible property of a client of the action link.
- Otherwise, VisibleLinked returns
True
.
- This means that a value of the Visible property of a linked action is distributed to the Visible properties of a client of the action link.
For more information, see IsVisibleLinked.