Navigation
Unreal Engine C++ API Reference > Runtime > WebBrowser > IWebBrowserSingleton
References
Module | WebBrowser |
Header | /Engine/Source/Runtime/WebBrowser/Public/IWebBrowserSingleton.h |
Include | #include "IWebBrowserSingleton.h" |
void SetJSBindingToLoweringEnabled
&40;
bool bEnabled
&41;
Remarks
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.
Parameters
Name | Description |
---|---|
bEnabled | a boolean value to enable or disable the to-lowering. |