|
|
|
|
|
Clickable (Property) In french: Clickable
The Clickable property gets and sets the behavior of an Image control when it is clicked. Remark: This corresponds to the "This image is a clickable area" option in the "Details" tab of the Image control description window. // Make an Image control unresponsive to mouse clicks IMG_MyImage.Clickable = False Syntax
Determining how an Image control behaves when clicked Hide the details
<Image control> = <Behavior>.Clickable
<Image control>: Control name Name of the Image control used. <Behavior>: Boolean - True if the Image control is a clickable area. In this case, all mouse events (press, release, hover, double-click, right-click, etc.) are captured by the Image control.
- False otherwise. In this case, the control does not capture any mouse events. Mouse events are captured by the underlying controls or by the window.
Changing how an Image control behaves when clicked Hide the details
<Image control>.Clickable = <New behavior>
<Image control>: Control name Name of the Image control used. <New behavior>: Boolean - True if the Image control is a clickable area. In this case, all mouse events (press, release, hover, double-click, right-click, etc.) are captured by the Image control.
- False otherwise. In this case, the control does not capture any mouse events. Mouse events are captured by the underlying controls or by the window.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|