Operating System Simulator Plugin
3.5.1
Unreal Engine plugin that simulates an Operating System Environment
|
Struct representing the history of internet browser navigation. More...
#include "InternetBrowser.h"
Public Member Functions | |
GENERATED_USTRUCT_BODY () | |
bool | IsValid () const |
Check if the internet browser history entry is valid. | |
FInternetBrowserHistory () | |
FInternetBrowserHistory (const FText &InTitle, const FString &InURL) | |
Constructor for initializing a new entry in the internet browser history. | |
Public Attributes | |
FText | Title |
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. | |
Struct representing the history of internet browser navigation.
|
inline |
Default constructor
|
inline |
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. |
FInternetBrowserHistory::GENERATED_USTRUCT_BODY | ( | ) |
bool FInternetBrowserHistory::IsValid | ( | ) | const |
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.
FDateTime FInternetBrowserHistory::DateAndTime |
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.
FText FInternetBrowserHistory::Title |
Represents the title of a web page in the internet browser's history.
FText FInternetBrowserHistory::URL |
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.