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

Button Example

Button

ADDON:ImportObject(2) -- Button
-- ADDON:ImportObject(OBJECT.Button)

local buttonExample = UIParent:CreateWidget("button", "buttonExample", "UIParent")
buttonExample:AddAnchor("CENTER", "UIParent", 0, 0)
buttonExample:SetStyle("text_default")
buttonExample:SetText("Click Me")
buttonExample:Show(true)

Button Example