WoWWiki

This wiki contains inaccurate and out-of-date information. Please head over to https://wowpedia.fandom.com for more accurate and up-to-date game information.

READ MORE

WoWWiki
WoWWiki
Advertisement

Widget API ← Frame < UnregisterEvent

Unregisters an event that the object is currently monitoring.

obj:UnregisterEvent("event");

Parameters[]

Arguments[]

"event"
The name of the event the object wishes to no longer monitor. See Events.

Returns[]

nil

Example[]

myChatAddon:UnregisterEvent("CHAT_MSG");

Result[]

Code in the <OnEvent> section of your addon would no longer fire anytime a chat message was received.

Details[]

Unregisters an event that an object is currently monitoring. Note: LUA is a case-sensitive language - there is no function called 'UnRegisterEvent'.
See also: Frame:RegisterEvent
Advertisement