Fires when paging availability changes so widgets can show page controls or indicators.
Use this from prompt UI and widget presentation code on UInteractionUIWidgetBase when the operation described by the summary is needed.
UFUNCTION(BlueprintImplementableEvent, Category = "InteractionUI")
void OnPagingStateChanged(bool bNewHasPaging, bool bNewCanPageNext, bool bNewCanPagePrevious);
Parameters
Inputs
bNewHasPaging
New paging availability state.
bNewCanPageNext
True when the new surface can page forward.
bNewCanPagePrevious
True when the new surface can page backward.
Use Cases
- Use during prompt UI and widget presentation workflows when fires when paging availability changes so widgets can show page controls or indicators..