|
|
|
|
- Use conditions
- Special cases
- Required permissions
CameraStop (Function) In french: CaméraArrête Stops the video preview or video recording in a Camera control.
Warning
Starting with version 27, this function is deprecated for Android and iOS applications. This function is kept only for Camera controls created with earlier versions and with the "Version-26-compatible mode" option enabled ("General" tab of the control description window).
// Stops the camera preview stream // in the "CAM_Kitchen" control ResStop = CameraStop(CAM_Kitchen, viStopDisplay)
Syntax
<Result> = CameraStop(<Camera control> [, <Action to stop>])
<Result>: Boolean - True if the camera preview stream and/or the video recording in the Camera control is correctly stopped,
- False if an error occurred. To get more details on the error, use ErrorInfo.
<Camera control>: Control name Name of the Camera control to be used. <Action to stop>: Optional integer constant Type of action to stop: | | viStopAll (Default value) | Stops the camera preview stream and the video recording. The corresponding file is generated. The specified Camera control becomes empty. | viStopCapture | Stops recording the video. The corresponding file is generated. | viStopDisplay | Stops the camera preview stream. The specified Camera control becomes empty. |
Remarks Special cases - To record the video captured by a web camera, use CameraCapture.
- To display the video captured by a web camera in a Camera control, use CameraDisplay.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|