FMX.Types._di_IFreeNotification

From RAD Studio API Documentation
Jump to: navigation, search

C++

typedef System::DelphiInterface<IFreeNotification> _di_IFreeNotification;

Properties

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

Description

Represents the DelphiInterface of IFreeNotification.

You can use _di_IFreeNotification to refer to notifier objects.

The following code snippet shows how to use the FMX.Types.IFreeNotification.FreeNotification method over a TButton:

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

See Also