![]() |
The API is no longer being updated here until further notice. |
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
