Skip to content

CurrentExecPage

Anthony Headley edited this page May 11, 2020 · 1 revision

CurrentExecPage() : Page

Brief:

Returns a Page object for the current selected page.

Paramiters:

Name Type Description Optional

Returns:

Type Description
Page Page Object for the selected Page

Examples:

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
Clone this wiki locally