Difference between revisions of "RegisterForControl - ScriptObject"
Jump to navigation
Jump to search
imported>Kyllagdrgn |
imported>Qazaaq (added required f4se version) |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
'''F4SE Member of:''' [[ScriptObject Script]] | '''F4SE Member of:''' [[ScriptObject Script]] | ||
{{Template:Papyrus:RequiredF4SE|version=0.3.0}} | |||
Registers the given Control for [[OnControlDown - ScriptObject|OnControlDown]] and [[OnControlUp - ScriptObject|OnControlUp]] events. | Registers the given Control for [[OnControlDown - ScriptObject|OnControlDown]] and [[OnControlUp - ScriptObject|OnControlUp]] events. | ||
== Syntax == | == Syntax == | ||
<source lang="papyrus"> | <source lang="papyrus">Function RegisterForControl(string control) Native</source> | ||
Function RegisterForControl(string control) Native | |||
</source> | |||
== Parameters == | == Parameters == | ||
* | *control: The Control to listen for. | ||
== Return Value == | == Return Value == | ||
Line 29: | Line 23: | ||
== See Also == | == See Also == | ||
*[[ScriptObject Script]] | *[[ScriptObject Script]] | ||
*[[UnregisterForControl - ScriptObject]] | *[[UnregisterForControl - ScriptObject]] | ||
*[[OnControlDown - ScriptObject]] | *[[OnControlDown - ScriptObject]] | ||
*[[OnControlUp - ScriptObject]] | *[[OnControlUp - ScriptObject]] | ||
[[Category:Scripting]] | |||
[[Category:Papyrus]] | |||
[[Category:F4SE]] |
Latest revision as of 18:34, 21 January 2018
F4SE Member of: ScriptObject Script
Requires F4SE version 0.3.0 or higher.
Registers the given Control for OnControlDown and OnControlUp events.
Syntax[edit | edit source]
Function RegisterForControl(string control) Native
Parameters[edit | edit source]
- control: The Control to listen for.
Return Value[edit | edit source]
None
Examples[edit | edit source]
RegisterForControl("Forward")
Notes[edit | edit source]
None