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 |
void UpdateProgressNotification
&40;
FProgressNotificationHandle InHandle,
int32 TotalWorkDone,
int32 UpdatedTotalWorkToDo,
FText UpdatedDisplayText
&41;
Remarks
Updates a progress notification. NotificationHandle A handle that can be used to update the progress or cancel the notification
Parameters
| Name | Description |
|---|---|
| InHandle | Handle to the notification that was previously created with StartProgressNotification |
| TotalWorkDone | The total number of work uits done for the notification. This is NOT an incremental value. |
| UpdatedTotalWorkToDo | (Optional) If the total work to do changes you can update the value here. Note that if the total work left increases but the total work done does not, the progress bar may go backwards |
| UpdatedDisplayText | (Optional) Updated display text of the notification |