Difference between revisions of "UnregisterForControl - Form"

From the CreationKit Wiki
Jump to navigation Jump to search
imported>Bot Owned
(Created page with "Category:Scripting Category:Papyrus Category:SKSE '''SKSE Member of:''' Form Script Unregisters the given Control for OnControlDown a...")
 
imported>Bot Owned
m (Spelling and Grammatical mistakes overlooked)
 
Line 4: Line 4:
'''SKSE Member of:''' [[Form Script]]
'''SKSE Member of:''' [[Form Script]]


Unregisters the given Control for [[OnControlDown - Form|OnControlDown]] and [[OnControlUp - Form|OnControlUp]] events after prior registration via [[RegisterForControl - Form|RegisterForControl]]
Unregisters the given control for [[OnControlDown - Form|OnControlDown]] and [[OnControlUp - Form|OnControlUp]] events after prior registration via [[RegisterForControl - Form|RegisterForControl]].


== Syntax ==
== Syntax ==
Line 12: Line 12:


== Parameters ==
== Parameters ==
*Control: The Control to stop listening for.
*Control: The control to stop listening for.


== Return Value ==
== Return Value ==

Latest revision as of 04:34, 1 June 2013

SKSE Member of: Form Script

Unregisters the given control for OnControlDown and OnControlUp events after prior registration via RegisterForControl.

Syntax[edit | edit source]

Function UnregisterForControl(string control) Native

Parameters[edit | edit source]

  • Control: The control to stop listening for.

Return Value[edit | edit source]

None

Examples[edit | edit source]

UnregisterForControl("Forward")

Notes[edit | edit source]

None

See Also[edit | edit source]