FMX.Types._di_IFreeNotification
C++
typedef System::DelphiInterface<IFreeNotification> _di_IFreeNotification;
Eigenschaften
| Typ | Sichtbarkeit | Quelle | Unit | Übergeordnet |
|---|---|---|---|---|
| typedef | public | FMX.Types.hpp | FMX.Types | FMX.Types |
Beschreibung
Repräsentiert das DelphiInterface von IFreeNotification.
Mit _di_IFreeNotification können Sie Notifier-Objekte referenzieren.
Das folgende Codefragment zeigt, wie die Methode FMX.Types.IFreeNotification.FreeNotification mit einem TButton-Steuerelement verwendet wird:
_di_IFreeNotification AInterface;
if (Button1->GetInterface(AInterface)) {
AInterface->FreeNotification(Form1);
}