Click or drag to resize

DialogWindow.ButtonClick Method

X#
Provide a method that is invoked when a check box, push button, or radio button is clicked with the mouse.

Namespace:  VO
Assembly:  VOGUIClasses (in VOGUIClasses.dll) Version: 2.19
Syntax
 VIRTUAL METHOD ButtonClick(
	oControlEvent
) AS USUAL CLIPPER
Request Example View Source

Parameters

oControlEvent (Optional)
Type: Usual
The ControlEvent object that describes which button was clicked.

Return Value

Type: Usual
Remarks
Tip Tip
Important! This is a callback method used by X#. Normally, it should not be called in your application code.
Button click events are propagated to the dialog window's owner the same way as MenuEvents. For an in-depth discussion on command event propagation, refer to the Programmer's Guide . You must supply the code to turn a radio button on (and all the other radio buttons off) when a user clicks on a radio button. Similarly, you must also be sure to invert the state of a check box when it is clicked.
See Also