
Indicates the user pressed the 'Enter' key.
Each control that throws this event has its handler that takes this generic form:
Copy Code |
|---|
(defun c:FormName_ControlName_OnReturnPressed () ) |
Copy Code |
|---|
; React to the user pressing return (princ c:MyForm_MyControl_OnReturnPressed () (princ "OnReturnPressed()\n") ) |