WinXRegOnLabelEdit (hWnd, FUNCADDR onLabelEdit)
Registers the onLabelEdit callback function
Parameter | Description |
---|---|
hWnd | The handle to the window to register the callback for |
FUNCADDR onLabelEdit | The address of the onLabelEdit callback function |
$$TRUE on success or $$FALSE on fail
Once registered, the onLabelEdit callback will be invoked when the user attempts to edit a label (this only happens for tree view controls at the moment).
'register the onLabelEdit callback function WinXRegOnLabelEdit (#hMain, &onLabelEdit()) |