FMX.Types._di_IAlignRoot

提供: RAD Studio API Documentation
移動先: 案内検索

C++

typedef System::DelphiInterface<IAlignRoot> _di_IAlignRoot;

プロパティ

種類 可視性 ソース ユニット
typedef public FMX.Types.hpp FMX.Types FMX.Types

説明

IAlignRootDelphiInterface を表します。


_di_IAlignRoot を使用すると、C++ コードでルート親オブジェクトを参照できます。

以下のコード断片では、TForm に対する FMX.Types.IAlignRoot.Realign メソッドの使用方法を示しています。

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

関連項目