Skip to content

UInternetBrowserSaveGame

#include <InternetBrowserUMG/Public/InternetBrowserSaveGame.h>
class UInternetBrowserSaveGame

Defined in InternetBrowserSaveGame.h:14

Inherits: USaveGame

---
config:
  class:
    hideEmptyMembersBox: true
---
classDiagram
  class UInternetBrowserSaveGame["UInternetBrowserSaveGame"]
  class USaveGame["USaveGame"]
  USaveGame <|-- UInternetBrowserSaveGame
---
config:
  class:
    hideEmptyMembersBox: true
---
classDiagram
  class UInternetBrowserSaveGame["UInternetBrowserSaveGame"]
  class FBrowserBookmark["FBrowserBookmark"]
  UInternetBrowserSaveGame *-- FBrowserBookmark
---
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.

ReturnNameDescription
TArray< FBrowserBookmark >GetSavedBookmarks const inlineReturns the saved bookmarks for the Internet Browser widget.

const inline

inline TArray< FBrowserBookmark > GetSavedBookmarks() const

Defined in InternetBrowserSaveGame.h:60 Returns the saved bookmarks for the Internet Browser widget.

An array of FBrowserBookmark objects representing the saved bookmarks.

ReturnNameDescription
boolSaveBrowser staticSaves the browser data to a save game slot.
UInternetBrowserSaveGame *LoadBrowser staticLoads the browser data from a save game slot.

static

static bool SaveBrowser(const class UInternetBrowser * InInternetBrowserWidget)

Defined in InternetBrowserSaveGame.h:45 Saves the browser data to a save game slot.

  • InInternetBrowserWidget The browser widget from which the data is to be saved.

True if the browser data is successfully saved; otherwise, false.


static

static UInternetBrowserSaveGame * LoadBrowser(const class UInternetBrowser * InInternetBrowserWidget)

Defined in InternetBrowserSaveGame.h:53 Loads the browser data from a save game slot.

  • InInternetBrowserWidget The browser widget from which the data is to be loaded.

A pointer to the loaded InternetBrowserSaveGame object if the save game exists; otherwise, nullptr.

ReturnNameDescription
FStringSaveSlotNameRepresents the name of the save slot for the Internet Browser Save Game.
int32UserIndexRepresents the user index for the Internet Browser Save Game.
TArray< FBrowserBookmark >BookmarksAn array of bookmarks that represents the saved bookmarks for the Internet Browser widget. The saved bookmarks can be accessed using the GetSavedBookmarks() function.

FString SaveSlotName

Defined in InternetBrowserSaveGame.h:20 Represents the name of the save slot for the Internet Browser Save Game.


int32 UserIndex

Defined in InternetBrowserSaveGame.h:24 Represents the user index for the Internet Browser Save Game.


TArray< FBrowserBookmark > Bookmarks

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