FMX.Forms.TCommonCustomForm.BringToFront

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure BringToFront; override;

C++

virtual void __fastcall BringToFront();

Properties

Type Visibility Source Unit Parent
procedure
function
public
FMX.Forms.pas
FMX.Forms.hpp
FMX.Forms TCommonCustomForm

Description

Brings this FMX visual object on top of other overlapping visual controls that are on the same form.

FMX.Forms.TCommonCustomForm.BringToFront inherits from FMX.Types.TFmxObject.BringToFront. All content below this line refers to FMX.Types.TFmxObject.BringToFront.

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.

See Also