Difference between revisions of "UnregisterForLooksMenuEvent - ScriptObject"
Jump to navigation
Jump to search
imported>Plplecuyer |
imported>Qazaaq (added category) |
||
Line 1: | Line 1: | ||
'''Member of:''' [[ScriptObject Script|ScriptObject]] | '''Member of:''' [[ScriptObject Script|ScriptObject]] | ||
Line 10: | Line 7: | ||
== Syntax == | == Syntax == | ||
<source lang="papyrus"> | <source lang="papyrus"> | ||
Function UnregisterForLooksMenuEvent() | Function UnregisterForLooksMenuEvent() Native | ||
</source> | </source> | ||
Line 26: | Line 23: | ||
== Notes == | == Notes == | ||
None | |||
== See Also == | == See Also == | ||
Line 32: | Line 29: | ||
*[[RegisterForLooksMenuEvent - ScriptObject]] | *[[RegisterForLooksMenuEvent - ScriptObject]] | ||
*[[OnLooksMenuEvent - ScriptObject]] | *[[OnLooksMenuEvent - ScriptObject]] | ||
[[Category:Scripting]] | |||
[[Category:Papyrus]] | |||
[[Category:Non-Delayed Native Functions]] | |||
[[Category:User Interface]] |
Latest revision as of 21:01, 11 February 2018
Member of: ScriptObject
Unregisters this script from receiving OnLooksMenuEvent.
Only the script that unregisters for an event will stop receiving it. Other scripts will still receive the event if they registered for it seperately.
Syntax[edit | edit source]
Function UnregisterForLooksMenuEvent() Native
Parameters[edit | edit source]
None
Return Value[edit | edit source]
None
Examples[edit | edit source]
; Unregister for Looks menu event
UnregisterForLooksMenuEvent()
Notes[edit | edit source]
None