Navigation
API > API/Runtime > API/Runtime/Engine > API/Runtime/Engine/ILocalNotificationService
References
| Module | Engine |
| Header | /Engine/Source/Runtime/Engine/Public/LocalNotification.h |
| Include | #include "LocalNotification.h" |
int32 ScheduleLocalNotificationAtTimeOverrideId
&40;
const FDateTime & FireDateTime,
bool LocalTime,
const FText & Title,
const FText & Body,
const FText & Action,
const FString & ActivationEvent,
int32 IdOverride
&41;
Remarks
Schedule a local notification at a specific time with a specific Id, inLocalTime specifies the current local time or if UTC time should be used Currently only works for Android. A unique identifier used to cancel the notification
Parameters
| Name | Description |
|---|---|
| FireDateTime | The time at which to fire the local notification |
| LocalTime | If true the provided time is in the local timezone, if false it is in UTC |
| Title | The title of the notification |
| Body | The more detailed description of the notification |
| Action | The text to be displayed on the slider controller |
| ActivationEvent | A string that is passed in the delegate callback when the app is brought into the foreground from the user activating the notification |
| IdOverride | A int that is passed to pin the notification to an Id. By doing this it will only show the latest notification sent from that ID. |