Navigation
API > API/Runtime > API/Runtime/WebBrowser > API/Runtime/WebBrowser/IWebBrowserSingleton
Description
Enable or disable to-lowering of JavaScript object member bindings.
Due to how JavaScript to UObject bridges require the use of FNames for building up the JS API objects, it is possible for case-sensitivity issues to develop if an FName has been previously created with differing case to your function or property names. To-lowering the member names allows a guaranteed casing for the web page's JS to reference.
Default behavior is enabled, so that all JS side objects have only lowercase members.
| Name | SetJSBindingToLoweringEnabled |
| Type | function |
| Header File | /Engine/Source/Runtime/WebBrowser/Public/IWebBrowserSingleton.h |
| Include Path | #include "IWebBrowserSingleton.h" |
void SetJSBindingToLoweringEnabled
(
bool bEnabled
)
Parameters
| Name | Remarks |
|---|---|
| bEnabled | a boolean value to enable or disable the to-lowering. |