
Indicates the selected folder changed.
Each control that throws this event has its handler that takes this generic form:
Copy Code |
|---|
(defun c:FormName_ControlName_OnTypeChange (sFileType [as String] /) ) |
Copy Code |
|---|
; React to the file type selection change
(princ c:MyForm_MyControl_OnTypeChange
(sFileType /)
(princ "OnTypeChange(")
(princ sFileType)
(princ ")\n")
) |