ddoAccepts
ddoAccepts(g_filter g_obj) =>t / nil
Description
This function is a method of ddHiObjFilter that is called with a specified dd object argument to get listed in the associated combo box.
Arguments
Values Returned
|
The specified object is accepted for selection in the associated combo box. |
|
|
The specified |
Examples
Defines a ddHiObjFilter sub-class, and its related methods. The ddoAccepts function accepts view names, which are member of trAcceptedViewNames.
(define trAcceptedViewNames (list "view1" "view2" ...)
(defclass trViewFilter (ddHiObjFilter) ())
(defmethod ddoAccepts ((self trViewFilter) (obj t))
(member obj->name trAcceptedViewNames))
Related Topics
Return to top