System.Notification.TCustomNotificationCenter.CreateNotification

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function CreateNotification: TNotification; overload;
function CreateNotification(const AName, AAlertBody: string; const AFireDate: TDateTime): TNotification; overload;

C++

TNotification* __fastcall CreateNotification()/* overload */;
TNotification* __fastcall CreateNotification(const System::UnicodeString AName, const System::UnicodeString AAlertBody, const System::TDateTime AFireDate)/* overload */;

Properties

Type Visibility Source Unit Parent
function public
System.Notification.pas
System.Notification.hpp
System.Notification TCustomNotificationCenter

Description

Creates and returns an instance of TNotification.

You can call this method without any parameters and the properties of the created notification have default values. Otherwise, you can pass the AName, AAlertBody and AFireDate to specify the values for the name, message and fire date of the created notification.

See Also