Navigation
API > API/Runtime > API/Runtime/Slate > API/Runtime/Slate/Framework > API/Runtime/Slate/Framework/Notifications > API/Runtime/Slate/Framework/Notifications/FSlateNotificationManager
References
| Module | Slate |
| Header | /Engine/Source/Runtime/Slate/Public/Framework/Notifications/NotificationManager.h |
| Include | #include "Framework/Notifications/NotificationManager.h" |
| Source | /Engine/Source/Runtime/Slate/Private/Framework/Notifications/NotificationManager.cpp |
FProgressNotificationHandle StartProgressNotification
&40;
FText DisplayText,
int32 TotalWorkToDo
&41;
Remarks
Begin a progress notification. These notifications should be used for background work not blocking work. Use SlowTask for blocking work NotificationHandle A handle that can be used to update the progress or cancel the notification
Parameters
| Name | Description |
|---|---|
| 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 |