FMX.Types.TFmxObject.BringToFront
Delphi
procedure BringToFront; virtual;
C++
virtual void __fastcall BringToFront();
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
procedure function |
public | FMX.Types.pas FMX.Types.hpp |
FMX.Types | TFmxObject |
Description
Brings this FMX visual object on top of other overlapping visual controls that are on the same form.
You can call BringToFront at run time as in the following code snippet:
Label1.BringToFront;
or, at design time, by right-clicking the FMX visual control and selecting Control > Bring to Front from the pop-up menu.