|
|
|
|
|
- Use conditions:
- Special cases
- Required permissions
<Camera>.Status (Function) In french: <Caméra>.Etat Returns the status of 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).
ResEtat = CAM_Cuisine.Etat()
SWITCH ResEtat
CASE viStatusDisplayCapture:
Message("Affichage de la vidéo dans le champ Caméra. " + ...
"Enregistrement en cours de cette vidéo")
CASE viStatusDisplayNoCapture:
Message("Affichage de la vidéo dans le champ Caméra. " + ...
"Aucune enregistrement n'est actuellement réalisé")
CASE viStatusCaptureNoDisplay:
Message("Enregistrement en cours d'une vidéo. "+ ...
"Cette vidéo n'est pas affichée dans le champ Caméra")
CASE viStatusNoCaptureNoDisplay:
Message("Aucune vidéo n'est affichée et/ou en cours " + ...
"d'enregistrement dans le champ Caméra")
END
Syntax
<Result> = <Camera control>.Report()
<Result>: Integer constant Status of the specified Camera control: | | viStatusCaptureNoDisplay | A video is being recorded. The preview stream is not displayed in the specified Camera control. | viStatusDisplayCapture | The preview stream is displayed in the specified Camera control. Video recording in progress. | viStatusDisplayNoCapture | The preview stream is displayed in the specified Camera control. No video recording in progress. | viStatusNoCaptureNoDisplay | No preview stream is being displayed and/or recorded in the specified Camera control. |
<Camera control>: Control name Name of the Camera control to be used.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|