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

Window Example

Window

ADDON:ImportObject(0) -- Window
-- ADDON:ImportObject(OBJECT.Window)

local windowExample = UIParent:CreateWidget("window", "windowExample", "UIParent")
windowExample:SetExtent(400, 400)
windowExample:AddAnchor("CENTER", "UIParent", 0, 0)
windowExample:SetTitleText("Example Text.")
windowExample:SetWindowModal(true)
windowExample:Show(true)

Window Example