Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Label Example

Label

ADDON:ImportObject(1) -- Label
-- ADDON:ImportObject(OBJECT.Label)

local lableExample = UIParent:CreateWidget("label", "lableExample", "UIParent")
lableExample:SetExtent(400, 100)
lableExample:AddAnchor("CENTER", "UIParent", 0, 0)
lableExample:SetNumberOnly(true)
lableExample:SetText("1234567890")
lableExample:Show(true)

Label Example