ScriptWindowCreated

From RAGE Multiplayer Wiki
Jump to navigation Jump to search

Client-Side
Event

C.png C#



C# Syntax
C.png

public delegate void OnScriptWindowCreatedDelegate(HtmlWindow window);

Parameters

  • window: The created browser handler, output expects RAGE.Ui.HtmlWindow type.

Example

Events.OnScriptWindowCreated += OnScriptWindowCreated;
public void OnScriptWindowCreated(RAGE.Ui.HtmlWindow window)
{
    RAGE.Chat.Output($"Find out what this does");
}