|
|
|
|
|
Display (Property) In french: Affichage
The Display property gets and sets the video displayed in the Conference control. The Conference control can display an incoming video, an outgoing video, or no video. // The control displays the incoming video CONF_Conference1.Display = StreamIncomingDisplay
Syntax
Getting the video currently displayed Hide the details
<Result> = <Conference control>.Display
<Result>: Integer constant Video currently displayed:
| | StreamIncomingDisplay | The video displayed corresponds to the video received by the current computer. | StreamNoDisplay | No video is displayed | StreamOutgoingDisplay | The video displayed corresponds to the video sent by the current computer. |
<Conference control>: Control name Name of the Conference control associated with the stream.
Changing the video displayed Hide the details
<Conference control>.Display = <Video displayed>
<Conference control>: Control name Name of the Conference control associated with the stream. <Video displayed>: Integer constant New video displayed:
| | StreamIncomingDisplay | The video displayed corresponds to the video received by the current computer. | StreamNoDisplay | No video is displayed | StreamOutgoingDisplay | The video displayed corresponds to the video sent by the current computer. |
Remarks - The Display property changes what is displayed on the screen, but does not change the data being transferred.
- Caution: The display does not change in the current connection. It will be taken into account in the next connection.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|