Paginate String Array

Callable
PaginateStringArray

Extracts one page of items from a string array. Returns the items for the given zero-based page index and the total page count.

Type: Callable (has execution pins)
Category: Fortuna|Array & Collection
Keywords: array & collection

Inputs

NameTypeDefaultDescription
ArrayTArray<FString>Array parameter
PageSizeint32PageSize parameter
PageIndexint32PageIndex parameter

Outputs

NameTypeDescription
OutPageTArray<FString>OutPage output
OutTotalPagesint32OutTotalPages output

Example Use Cases

Example 1

Show 10 chat messages per page in a scrollable UI log.

Example 2

Paginate search results returned from a backend query.