Control.KeyUp Method (Typed) | |
Provide a method that is invoked when the control has focus and a key on the keyboard is released.
Namespace:
XSharp.VO.SDK
Assembly:
XSharp.VOGUIClasses (in XSharp.VOGUIClasses.dll) Version: 2.19
Syntax VIRTUAL METHOD KeyUp(
oKeyEvent AS KeyEvent
) AS VOID
public virtual void KeyUp(
KeyEvent oKeyEvent
)
Request Example
View SourceParameters
- oKeyEvent
- Type: KeyEvent
The KeyEvent object that describes what key was released.
Remarks Tip |
---|
Important! This is a callback method used by X#.
Normally, it should not be called in your application code.
|
This event handler is called only if the control has the input focus.
See Also