Tala Esenlikler
Widget Base

OnPagingStateChanged

Fires when paging availability changes so widgets can show page controls or indicators.

Interaction Framework 1.0.0 UE5.8 Function UInteractionUIWidgetBase

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.

Owner UInteractionUIWidgetBase
Module InteractionFrameworkUI
Category InteractionUI
UFUNCTION(BlueprintImplementableEvent, Category = "InteractionUI")
void OnPagingStateChanged(bool bNewHasPaging, bool bNewCanPageNext, bool bNewCanPagePrevious);

Parameters

Inputs
bNewHasPaging
bool

New paging availability state.

bNewCanPageNext
bool

True when the new surface can page forward.

bNewCanPagePrevious
bool

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..

Related Docs