Paginate String Array
CallablePaginateStringArrayExtracts 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
| Name | Type | Default | Description |
|---|---|---|---|
| Array | TArray<FString> | — | Array parameter |
| PageSize | int32 | — | PageSize parameter |
| PageIndex | int32 | — | PageIndex parameter |
Outputs
| Name | Type | Description |
|---|---|---|
| OutPage | TArray<FString> | OutPage output |
| OutTotalPages | int32 | OutTotalPages 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.