UInternetBrowserSaveGame
#include <InternetBrowserUMG/Public/InternetBrowserSaveGame.h>class UInternetBrowserSaveGameDefined in InternetBrowserSaveGame.h:14
Inherits:
USaveGame
Inheritance diagram
Section titled “Inheritance diagram”---
config:
class:
hideEmptyMembersBox: true
---
classDiagram
class UInternetBrowserSaveGame["UInternetBrowserSaveGame"]
class USaveGame["USaveGame"]
USaveGame <|-- UInternetBrowserSaveGame
Collaboration diagram
Section titled “Collaboration diagram”---
config:
class:
hideEmptyMembersBox: true
---
classDiagram
class UInternetBrowserSaveGame["UInternetBrowserSaveGame"]
class FBrowserBookmark["FBrowserBookmark"]
UInternetBrowserSaveGame *-- FBrowserBookmark
Class detail
Section titled “Class detail”---
config:
class:
hideEmptyMembersBox: true
---
classDiagram
class UInternetBrowserSaveGame {
+GetSavedBookmarks() const TArray< FBrowserBookmark() >
+SaveBrowser(const class UInternetBrowser *InInternetBro bool
+LoadBrowser(const class UInternetBrowser *InInternetBro UInternetBrowserSaveGame() *
+SaveSlotName : FString
+UserIndex : int32
+Bookmarks : TArray< FBrowserBookmark() >
}
Represents the save game data for the Internet Browser widget.
Public Methods
Section titled “Public Methods”| Return | Name | Description |
|---|---|---|
TArray< FBrowserBookmark > | GetSavedBookmarks const inline | Returns the saved bookmarks for the Internet Browser widget. |
GetSavedBookmarks
Section titled “GetSavedBookmarks”const inline
inline TArray< FBrowserBookmark > GetSavedBookmarks() constDefined in InternetBrowserSaveGame.h:60 Returns the saved bookmarks for the Internet Browser widget.
Returns
Section titled “Returns”An array of FBrowserBookmark objects representing the saved bookmarks.
Referenced by
Section titled “Referenced by”Public Static Methods
Section titled “Public Static Methods”| Return | Name | Description |
|---|---|---|
bool | SaveBrowser static | Saves the browser data to a save game slot. |
UInternetBrowserSaveGame * | LoadBrowser static | Loads the browser data from a save game slot. |
SaveBrowser
Section titled “SaveBrowser”static
static bool SaveBrowser(const class UInternetBrowser * InInternetBrowserWidget)Defined in InternetBrowserSaveGame.h:45 Saves the browser data to a save game slot.
Parameters
Section titled “Parameters”InInternetBrowserWidgetThe browser widget from which the data is to be saved.
Returns
Section titled “Returns”True if the browser data is successfully saved; otherwise, false.
Referenced by
Section titled “Referenced by”References
Section titled “References”LoadBrowser
Section titled “LoadBrowser”static
static UInternetBrowserSaveGame * LoadBrowser(const class UInternetBrowser * InInternetBrowserWidget)Defined in InternetBrowserSaveGame.h:53 Loads the browser data from a save game slot.
Parameters
Section titled “Parameters”InInternetBrowserWidgetThe browser widget from which the data is to be loaded.
Returns
Section titled “Returns”A pointer to the loaded InternetBrowserSaveGame object if the save game exists; otherwise, nullptr.
Referenced by
Section titled “Referenced by”References
Section titled “References”Private Attributes
Section titled “Private Attributes”| Return | Name | Description |
|---|---|---|
FString | SaveSlotName | Represents the name of the save slot for the Internet Browser Save Game. |
int32 | UserIndex | Represents the user index for the Internet Browser Save Game. |
TArray< FBrowserBookmark > | Bookmarks | An array of bookmarks that represents the saved bookmarks for the Internet Browser widget. The saved bookmarks can be accessed using the GetSavedBookmarks() function. |
SaveSlotName
Section titled “SaveSlotName”FString SaveSlotNameDefined in InternetBrowserSaveGame.h:20 Represents the name of the save slot for the Internet Browser Save Game.
Referenced by
Section titled “Referenced by”UserIndex
Section titled “UserIndex”int32 UserIndexDefined in InternetBrowserSaveGame.h:24 Represents the user index for the Internet Browser Save Game.
Referenced by
Section titled “Referenced by”Bookmarks
Section titled “Bookmarks”TArray< FBrowserBookmark > BookmarksDefined in InternetBrowserSaveGame.h:31 An array of bookmarks that represents the saved bookmarks for the Internet Browser widget. The saved bookmarks can be accessed using the GetSavedBookmarks() function.