FMX.Types._di_IFreeNotification

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

C++

typedef System::DelphiInterface<IFreeNotification> _di_IFreeNotification;

プロパティ

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

説明

IFreeNotificationDelphiInterface を表します。


_di_IFreeNotification を使用すると、ノーティファイア オブジェクトを参照できます。

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

 _di_IFreeNotification AInterface;
  if (Button1->GetInterface(AInterface)) {
 	 AInterface->FreeNotification(Form1);
  }

関連項目