Frame.Event:LeftUp()
From Riftui Wiki
This function is triggered when the left mouse button is released after being pressed inside the frame.
Contents |
Signature
function frame.Event:LeftUp() ... end
Parameters
None
Return Value
None
Example
local context = UI.CreateContext("SampleContext") local frame = UI.CreateFrame("Frame", "SampleFrame", context) -- Overload the LeftUp function -- function frame.Event:LeftUp() -- Print out LeftUp! -- print("LeftUp!") end