System.Notification.TCustomNotificationCenter.CreateNotification
Delphi
function CreateNotification: TNotification; overload;
function CreateNotification(const AName, AAlertBody: string; const AFireDate: TDateTime): TNotification; overload;
C++
TNotification* __fastcall CreateNotification(void)/* overload */;
TNotification* __fastcall CreateNotification(const System::UnicodeString AName, const System::UnicodeString AAlertBody, const System::TDateTime AFireDate)/* overload */;
Propriétés
| Type | Visibilité | Source | Unité | Parent |
|---|---|---|---|---|
| function | public | System.Notification.pas System.Notification.hpp |
System.Notification | TCustomNotificationCenter |
Description
Crée et renvoie une instance de TNotification.
Vous pouvez appeler cette méthode sans les moindres paramètres, auquel cas les propriétés de la notification créée sont définies sur les valeurs par défaut. Sinon, vous pouvez transmettre AName, AAlertBody et AFireDate afin de spécifier les valeurs name, message et fire date de la notification créée.
Voir aussi
- System.Notification.TNotification
- System.Notification.TNotification.Name
- System.Notification.TNotification.AlertBody
- System.Notification.TNotification.FireDate
- System.Notification.TCustomNotificationCenter.CancelAll
- System.Notification.TCustomNotificationCenter.CancelNotification
- System.Notification.TCustomNotificationCenter.Create
- System.Notification.TCustomNotificationCenter.PresentNotification
- System.Notification.TCustomNotificationCenter.ScheduleNotification