GetExecutor(integer)

説明

Lua 関数の GetExecutor は、エクゼキュータ番号に基づいて、エクゼキュータとページのハンドルを返します。

引数

戻り値

この例では、エクゼキュータ201に関する2つのハンドルを取得してから、それらをダンプ表示しています。

return function ()
    -- This saves the handles for executor 201 on the selected page
    local executorHandle, pageHandle = GetExecutor(201)
    -- The following prints the dumps of the two handles
    Printf("This is the dump of the executor:")
    Printf("------------DUMP START------------")
    executorHandle:Dump()
    Printf("---------------END----------------")
    Printf("This is the dump of the page:")
    Printf("------------DUMP START------------")
    pageHandle:Dump()
    Printf("---------------END----------------")
end