- Found in:
- SkyUI
eventOnPageReset(stringa_page)
Description
GitHub Wiki Description (SkyUI)
Called when a new page is selected, including the initial empty page.
Position the cursor and add options to the current page. Each added option is assigned a unique option ID.
Documentation String
Called when a new page is selected, including the initial empty page
Parameters
stringa_page
GitHub Wiki Description (SkyUI)
The name of the the current page, or "" if no page is selected.
Examples
Auto-Generated Example
Scriptname MyCoolScript extends SKI_ConfigBase
event OnPageReset(string a_page)
Debug.trace("Event received - OnPageReset: a_page = " + a_page)
endEvent