Navigation
API > API/Developer > API/Developer/MessageLog > API/Developer/MessageLog/FMessageLogListingModel
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool SetCurrentPage
(
const uint32 InOldPageIndex |
Sets the current page to the one specified by the index. | Model/MessageLogListingModel.h | |
bool SetCurrentPage
(
const FText& InTitle, |
Sets the current page to the one specified by the title. | Model/MessageLogListingModel.h |
SetCurrentPage(const uint32)
Description
Sets the current page to the one specified by the index. If the page does not exist, creates a new page. The page will move to index 0.
| Name | SetCurrentPage |
| Type | function |
| Header File | /Engine/Source/Developer/MessageLog/Public/Model/MessageLogListingModel.h |
| Include Path | #include "Model/MessageLogListingModel.h" |
| Source | /Engine/Source/Developer/MessageLog/Private/Model/MessageLogListingModel.cpp |
bool SetCurrentPage
(
const uint32 InOldPageIndex
)
true if the page has changed (either switched or created a new one).
Parameters
| Name | Remarks |
|---|---|
| InTitle | The title of the page to search for, or create |
| InMaxPages | The maximum number of pages we keep around. If the count is exceeded, we discard the oldest page. |
SetCurrentPage(const FText &, uint32)
Description
Sets the current page to the one specified by the title. If the page does not exist, creates a new page.
| Name | SetCurrentPage |
| Type | function |
| Header File | /Engine/Source/Developer/MessageLog/Public/Model/MessageLogListingModel.h |
| Include Path | #include "Model/MessageLogListingModel.h" |
| Source | /Engine/Source/Developer/MessageLog/Private/Model/MessageLogListingModel.cpp |
bool SetCurrentPage
(
const FText & InTitle,
uint32 InMaxPages
)
true if the page has changed (either switched or created a new one).
Parameters
| Name | Remarks |
|---|---|
| InTitle | The title of the page to search for, or create |
| InMaxPages | The maximum number of pages we keep around. If the count is exceeded, we discard the oldest page. |