![]() |
UCefView
|
Type alias for CEF frame id, used to uniquely identify a browser frame within the Chromium Embedded Framework. More...
#include <CefViewTypes.h>
Public Member Functions | |
FCefFrameId () | |
Default constructor for FCefFrameId. Initializes the frame id to zero (for int) or empty string (for FString). | |
FCefFrameId (const TCHAR *Id) | |
Constructor for FCefFrameId with a string id. | |
Public Attributes | |
FString | Value = TEXT("") |
The string value representing the frame id. | |
Type alias for CEF frame id, used to uniquely identify a browser frame within the Chromium Embedded Framework.
The underlying type of the frame id depends on the CEF version: for versions prior to 122, it is an integer; for 122 and above, it is a string.
This struct is used throughout the UCefView plugin to reference specific frames for navigation, scripting, and event handling.
|
inline |
Default constructor for FCefFrameId. Initializes the frame id to zero (for int) or empty string (for FString).
|
inline |
Constructor for FCefFrameId with a string id.
Id | The string id to initialize the frame id. Typically a GUID or unique string provided by CEF. |
FString FCefFrameId::Value = TEXT("") |
The string value representing the frame id.
Used for CEF versions 122 and above. This value is globally unique.