FMX.Forms.TCommonCustomForm.SendToBack

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure SendToBack; override;

C++

virtual void __fastcall SendToBack();

Properties

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

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.

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

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