FMX.Types._di_IAlignRoot
C++
typedef System::DelphiInterface<IAlignRoot> _di_IAlignRoot;
プロパティ
| 種類 | 可視性 | ソース | ユニット | 親 |
|---|---|---|---|---|
| typedef | public | FMX.Types.hpp | FMX.Types | FMX.Types |
説明
IAlignRoot の DelphiInterface を表します。
_di_IAlignRoot を使用すると、C++ コードでルート親オブジェクトを参照できます。
以下のコード断片では、TForm に対する FMX.Types.IAlignRoot.Realign メソッドの使用方法を示しています。
_di_IAlignRoot AInterface;
if (Form1->GetInterface(AInterface)) {
AInterface->Realign();
}