
The control has lost the user input focus.
Each control that throws this event has its handler take this generic form:
Copy Code |
|---|
(defun c:FormName_ControlName_OnKillFocus () ) |
BlockList, BlockView, ComboBox, DwgList, DwgPreview, EditableGrid, Grid (Hatch), ImageCombo, ListBox, ListView, OptionList, PictureBox, SlideView, TextBox, TreeControl.
Copy Code |
|---|
; React to the component that lost the focus (defun c:MyForm_MyControl_OnKillFocus () (princ "OnKillFocus()\n") ) |