Entry.y
Get or set the Entry vertical position. The vertical position start from 0 (top side of the parent widget) and increase to the bottom side of the parent widget.
Example
--! luart-extensions
import ui
-- create a simple window
local win = ui.Window("Entry.y sample", 300, 600)
local entry = ui.Entry(win, "Hello LuaRT !")
-- shows the window
win:show()
-- update user interface and increase Entry horizontal position
repeat
ui.update()
entry.y = entry.y + 1
until not win.visible or (entry.y > 600)