FMX.Types._di_IAlignRoot

From RAD Studio API Documentation
Jump to: navigation, search

C++

typedef System::DelphiInterface<IAlignRoot> _di_IAlignRoot;

Properties

Type Visibility Source Unit Parent
typedef public FMX.Types.hpp FMX.Types FMX.Types

Description

Represents the DelphiInterface of IAlignRoot.

You can use _di_IAlignRoot to refer to the root parent object in C++ code.

The following code snippet shows how to use the FMX.Types.IAlignRoot.Realign method over a TForm:

 _di_IAlignRoot AInterface;
 if (Form1->GetInterface(AInterface)) {
	 AInterface->Realign();
 }

See Also