Wowpedia

We have moved to Warcraft Wiki. Click here for information and the new URL.

READ MORE

Wowpedia

Prevents the frame from moving off-screen.

Frame:SetClampedToScreen(clampedToScreen)

Arguments[]

clampedToScreen
boolean - True to enable clamping, false to permit moving off-screen.

Details[]

Example[]

Despite calling SetPoint() toward 100 pixels beyond the left screen edge, the SpellBookFrame remains fully visible on the screen:

SpellBookFrame:Show()
SpellBookFrame:SetClampedToScreen(true)
SpellBookFrame:SetPoint("TOPLEFT", UIParent, "TOPLEFT", -100, 0)

Patch changes[]