ObjectDCL Banner

OnGetDayState Event

Description

Indicates it is the time to tell which days to display in bold.

AutoLISP Syntax

The event handler takes this generic form for most combobox types:

CopyCode imageCopy Code
(defun c:FormName_ControlName_OnGetDayState ()
     
)

Applies For

MonthPicker.

Example

CopyCode imageCopy Code
; It's time to tell which days to highlight
(defun c:MyForm_MyControl_OnGetDayState ()
     (princ "OnGetDayState()\n")
)