FMX.Controls.TEnumControlsResult
Delphi
TEnumControlsResult = TEnumProcResult;
C++
typedef Fmx::Types::TEnumProcResult TEnumControlsResult;
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
enum typedef |
public | FMX.Controls.pas FMX.Controls.hpp |
FMX.Controls | FMX.Controls |
Description
Type that defines a behavior of a depth-first tree search algorithm after it visits a node of the tree.
Instances of this type may have any of the following values:
- Continue determines that the search must continue as usual.
- Discard makes the search skip the child nodes of the current node, as well as their children (grand-children) and so on.
- Stop interrupts the search loop. This is equivalent to the Break keyword of a language-level control loop.