FInternetBrowserHistory
#include <InternetBrowserUMG/Public/InternetBrowser.h>Class detail
Section titled “Class detail”---
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 FInternetBrowserHistoryDefined in InternetBrowser.h:28 Struct representing the history of internet browser navigation.
Public Attributes
Section titled “Public Attributes”| Return | Name | Description |
|---|---|---|
FText | Title | Represents the title of a web page in the internet browser’s history. |
FText | URL | The URL of a web page in the internet browser’s history. |
FDateTime | DateAndTime | The date and time of a web page entry in the internet browser’s history. |
FText TitleDefined in InternetBrowser.h:34 Represents the title of a web page in the internet browser’s history.
FText URLDefined 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
Referenced by
Section titled “Referenced by”DateAndTime
Section titled “DateAndTime”FDateTime DateAndTimeDefined 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.
Public Methods
Section titled “Public Methods”| Return | Name | Description |
|---|---|---|
bool | IsValid const | Check if the internet browser history entry is valid. |
FInternetBrowserHistory inline | Default constructor | |
FInternetBrowserHistory inline | Constructor for initializing a new entry in the internet browser history. |
IsValid
Section titled “IsValid”const
bool IsValid() constDefined 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.
Returns
Section titled “Returns”true if the internet browser history entry is valid, false otherwise.
See also: FInternetBrowserHistory, FInternetBrowserHistory::URL, FInternetBrowserHistory::DEFAULT_URL
References
Section titled “References”FInternetBrowserHistory
Section titled “FInternetBrowserHistory”inline
inline FInternetBrowserHistory()Defined in InternetBrowser.h:78 Default constructor
FInternetBrowserHistory
Section titled “FInternetBrowserHistory”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.
Parameters
Section titled “Parameters”-
InTitleThe title of the web page in the internet browser’s history. -
InURLThe URL of the web page in the internet browser’s history.
See also: FInternetBrowserHistory::Title, FInternetBrowserHistory::URL, FInternetBrowserHistory::DateAndTime