Wowpedia

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

READ MORE

Wowpedia

Returns true if the region can receive mouse wheel input.

enabled = ScriptRegion:IsMouseWheelEnabled()

Returns[]

enabled
boolean

Example[]

Tests enabling mouse wheel input on a frame.

local f = CreateFrame("Frame")
print(f:IsMouseWheelEnabled()) -- false
f:EnableMouseWheel(true)
print(f:IsMouseWheelEnabled()) -- true