
Indicates that the user released a pressed key.
Each control that throws this event has its handler that takes this generic form:
Copy Code |
|---|
(defun c:FormName_ControlName_OnKeyUp (sChar [as String] nRepeatCount [as Integer] nFlags [as Integer] /) ) |
ListView, PictureBox, SlideView, TextBox.
Copy Code |
|---|
; React to the key being released
(princ c:MyForm_MyControl_OnKeyUp
(sChar nRepeatCount nFlags /)
(princ "OnKeyUp(")
(princ sChar)
(princ ",")
(princ nRepeatCount)
(princ ", ")
(princ nFlags)
(princ ")\n")
) |