FMX.Types.TFmxObject.SendToBack

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure SendToBack; virtual;

C++

virtual void __fastcall SendToBack();

Properties

Type Visibility Source Unit Parent
procedure
function
public
FMX.Types.pas
FMX.Types.hpp
FMX.Types TFmxObject

Description

Sends this FMX visual object to the background letting other overlapping visual controls that are on the same form to be on top of it.

You can call SendToBack at run time as in the following code snippet:

  Label1.SendToBack;

or, at design time by right-clicking the FMX visual control and selecting Control > Send To Back from the pop-up menu.

See Also