System.Notification.TBaseNotificationCenter.DoCancelNotification

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure DoCancelNotification(const AName: string); overload; virtual; abstract;
procedure DoCancelNotification(const ANotification: TNotification); overload; virtual; abstract;

C++

virtual void __fastcall DoCancelNotification(const System::UnicodeString AName) = 0 /* overload */;
virtual void __fastcall DoCancelNotification(TNotification* const ANotification) = 0 /* overload */;

Properties

Type Visibility Source Unit Parent
procedure
function
protected
System.Notification.pas
System.Notification.hpp
System.Notification TBaseNotificationCenter

Description

Cancels the delivery of a scheduled local notification.

You need to specify one of the following parameters:

  • AName: The unique name of a notification.
  • ANotification: A reference to the notification instance that you want to cancel.

See Also