Navigation
API > API/Runtime > API/Runtime/Slate > API/Runtime/Slate/FSlateNotificationManager
Description
Begin a progress notification. These notifications should be used for background work not blocking work. Use SlowTask for blocking work
| Name | StartProgressNotification |
| Type | function |
| Header File | /Engine/Source/Runtime/Slate/Public/Framework/Notifications/NotificationManager.h |
| Include Path | #include "Framework/Notifications/NotificationManager.h" |
| Source | /Engine/Source/Runtime/Slate/Private/Framework/Notifications/NotificationManager.cpp |
FProgressNotificationHandle StartProgressNotification
(
FText DisplayText,
int32 TotalWorkToDo
)
NotificationHandle A handle that can be used to update the progress or cancel the notification
Parameters
| Name | Remarks |
|---|---|
| DisplayText | Display text used to describe the type of work to the user |
| TotalWorkToDo | Arbitrary number of work units to perform. If more than one progress notification is active this work is summed with any other active notifications. This value usually represents the number of steps to be completed |