Skip to content

FInternetBrowserHistory

#include <InternetBrowserUMG/Public/InternetBrowser.h>
---
config:
  class:
    hideEmptyMembersBox: true
---
classDiagram
  class FInternetBrowserHistory {
    +Title : FText
    +URL : FText
    +DateAndTime : FDateTime
    +IsValid() const bool
    +FInternetBrowserHistory()
    +FInternetBrowserHistory(const FText &InTitle, const FString &InURL)
  }
struct FInternetBrowserHistory

Defined in InternetBrowser.h:28 Struct representing the history of internet browser navigation.

ReturnNameDescription
FTextTitleRepresents the title of a web page in the internet browser’s history.
FTextURLThe URL of a web page in the internet browser’s history.
FDateTimeDateAndTimeThe date and time of a web page entry in the internet browser’s history.

FText Title

Defined in InternetBrowser.h:34 Represents the title of a web page in the internet browser’s history.


FText URL

Defined in InternetBrowser.h:46 The URL of a web page in the internet browser’s history.

This variable represents the URL (Uniform Resource Locator) of a web page in the internet browser’s history. It is used to store the URL information for a specific entry in the web history. The URL can be accessed and modified through this variable.

See also: FInternetBrowserHistory::IsValid


FDateTime DateAndTime

Defined in InternetBrowser.h:56 The date and time of a web page entry in the internet browser’s history.

The DateAndTime variable represents the date and time when a web page was accessed and added to the internet browser’s history. This variable is used to store the date and time information for a specific entry in the web history. The date and time can be accessed and modified through this variable.

ReturnNameDescription
boolIsValid constCheck if the internet browser history entry is valid.
FInternetBrowserHistory inlineDefault constructor
FInternetBrowserHistory inlineConstructor for initializing a new entry in the internet browser history.

const

bool IsValid() const

Defined in InternetBrowser.h:68 Check if the internet browser history entry is valid.

This method checks whether the internet browser history entry is valid or not. An entry is considered valid if the URL is not empty or whitespace and is not equal to the default URL.

true if the internet browser history entry is valid, false otherwise.

See also: FInternetBrowserHistory, FInternetBrowserHistory::URL, FInternetBrowserHistory::DEFAULT_URL


inline

inline FInternetBrowserHistory()

Defined in InternetBrowser.h:78 Default constructor


inline

inline FInternetBrowserHistory(const FText & InTitle, const FString & InURL)

Defined in InternetBrowser.h:96 Constructor for initializing a new entry in the internet browser history.

This constructor is used to initialize a new entry in the internet browser history with the given title and URL. The date and time of the entry will be set to the current date and time.

  • InTitle The title of the web page in the internet browser’s history.

  • InURL The URL of the web page in the internet browser’s history.

See also: FInternetBrowserHistory::Title, FInternetBrowserHistory::URL, FInternetBrowserHistory::DateAndTime