Skip to content

UInternetBrowserHistoryManager

#include <InternetBrowserUMG/Public/InternetBrowserHistoryManager.h>
class UInternetBrowserHistoryManager

Defined in InternetBrowserHistoryManager.h:13

Inherits: UObject

---
config:
  class:
    hideEmptyMembersBox: true
---
classDiagram
  class UInternetBrowserHistoryManager["UInternetBrowserHistoryManager"]
  class UObject["UObject"]
  UObject <|-- UInternetBrowserHistoryManager
---
config:
  class:
    hideEmptyMembersBox: true
---
classDiagram
  class UInternetBrowserHistoryManager["UInternetBrowserHistoryManager"]
  class FInternetBrowserHistory["FInternetBrowserHistory"]
  UInternetBrowserHistoryManager *-- FInternetBrowserHistory
---
config:
  class:
    hideEmptyMembersBox: true
---
classDiagram
  class UInternetBrowserHistoryManager {
    +History : TArray< FInternetBrowserHistory() >
    +DeleteHistory(const FInternetBrowserHistory &InHistory)
    +GetHistoryManager() UInternetBrowserHistoryManager() *
    +DestroyHistoryManager()
    +HistoryManager : UInternetBrowserHistoryManager() *
  }

A class that manages the internet browser history.

ReturnNameDescription
TArray< FInternetBrowserHistory >History

TArray< FInternetBrowserHistory > History

Defined in InternetBrowserHistoryManager.h:23

ReturnNameDescription
voidDeleteHistoryDeletes a single history entry from the internet browser history.

void DeleteHistory(const FInternetBrowserHistory & InHistory)

Defined in InternetBrowserHistoryManager.h:52 Deletes a single history entry from the internet browser history.

This method removes the specified history entry from the internet browser history.

  • InHistory The history entry to be deleted.
ReturnNameDescription
UInternetBrowserHistoryManager *GetHistoryManager staticReturns the instance of UInternetBrowserHistoryManager. This function retrieves the instance of UInternetBrowserHistoryManager. If the instance is not created yet, it creates a new instance and adds it to the root. Subsequent calls to this function will return the same instance.
voidDestroyHistoryManager staticRemoves and destroys the instance of UInternetBrowserHistoryManager.

static

static UInternetBrowserHistoryManager * GetHistoryManager()

Defined in InternetBrowserHistoryManager.h:33 Returns the instance of UInternetBrowserHistoryManager. This function retrieves the instance of UInternetBrowserHistoryManager. If the instance is not created yet, it creates a new instance and adds it to the root. Subsequent calls to this function will return the same instance.

A pointer to the instance of UInternetBrowserHistoryManager.


static

static void DestroyHistoryManager()

Defined in InternetBrowserHistoryManager.h:42 Removes and destroys the instance of UInternetBrowserHistoryManager.

This function removes the instance of UInternetBrowserHistoryManager from the root and destroys it. If the instance is not created, this function does nothing.

ReturnNameDescription
UInternetBrowserHistoryManager *HistoryManager staticA pointer to the instance of the UInternetBrowserHistoryManager class

static

UInternetBrowserHistoryManager * HistoryManager = nullptr

Defined in InternetBrowserHistoryManager.h:18 A pointer to the instance of the UInternetBrowserHistoryManager class