|
|
|
|
|
TapToFocus (Property) In french: AutoFocusAuClic
The TapToFocus property is used to: - Determine if tap to focus is enabled in a Camera control.
- Enable or disable tap to focus in a Camera control.
If tap to focus is enabled, the camera will focus on the spot tapped by the user. Remarks: - This property can only be used on Camera controls that are not in "Version-26-compatible mode".
- This property corresponds to the "Enable tap to focus" option in the "General" tab of the Camera control description window.
IF CAM_MyCamera.TapToFocus = True THEN ToastDisplay("Tap to focus.") END
Syntax
Determining if the tap to focus feature is enabled in a Camera control Hide the details
<Result> = <Camera control>.TapToFocus
<Result>: Boolean - True if tap to focus is enabled,
- False otherwise.
<Camera control>: Control name Name of the Camera control to be used.
Enabling or disabling tap to focus in a Camera control Hide the details
<Camera control>.TapToFocus = <Authorization>
<Camera control>: Control name Name of the Camera control to be used. <Authorization>: Boolean - True to enable tap to focus,
- False otherwise.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|