Skip to content
Aaron H edited this page Dec 10, 2016 · 2 revisions

Information

The panel object has nothing unique about it. It is simply meant to be a parent object for other objects.

Example Use

local frame = loveframes.Create("frame")
frame:SetName("Panel")
frame:SetSize(210, 85)
frame:CenterWithinArea(unpack(demo.centerarea))
     
local panel = loveframes.Create("panel", frame)
panel:SetPos(5, 30)

Event Callbacks

The panel object has no unique event callbacks.

Methods

The panel object has no unique methods.

Clone this wiki locally