RAGE.Ui.HtmlWindow
Creates a new browser.
Syntax
class RAGE.Ui.HtmlWindow;
Example
C# Syntax
Example
RAGE.Ui.HtmlWindow CEF;
public void createBrowser(bool toggle, string way)
{
CEF = new RAGE.Ui.HtmlWindow(way); // Creating of browser
}
public void activateBrowser(bool toggle)
{
CEF.Active = true; // Activating of browser
}
public void urlBrowser(string url)
{
CEF.Url = url; // Changing url of browser
}