-
-
Notifications
You must be signed in to change notification settings - Fork 5
CurrentExecPage
Anthony Headley edited this page May 11, 2020
·
1 revision
CurrentExecPage() : Page
Returns a Page object for the current selected page.
Name | Type | Description | Optional |
---|
Type | Description |
---|---|
Page | Page Object for the selected Page |
local page = CurrentExecPage();
Echo(page.index .. " - " .. page.name) -- e.g. "1 - Page 1"
page.name = "New Name"
Echo(page.index .. " - " .. page.name) -- "1 - New Name