Callback Procedure doneProc
doneProc is called when you finish an enterfunction or cancel it. It is passed the w_windowId, either t or nil (t if the enterfunction completed, nil if it was canceled), and the list of points that you entered. For enterString, the string that you typed is passed instead of a point list. For enterNumber, the number you typed is passed instead of a point list. doneProc is important when enterfunctions are nested. doneProc and nesting are discussed at the end of this section.
doneProc( w_windowId t | nil l_pointList)
Related Topics
Return to top