|
|
|
|
|
OutgoingData (Property) In french: Emission
The OutgoingData property is used to determine and change the type of data emitted by the stream. A stream emits sound and video by default. Caution: The current transmission is not modified. The changes performed by this property will be taken into account during the next connection. // Manages the sound only MyStream.OutgoingData = StreamSound MyStream.Address = "123.123.123"
Syntax
Determining the type of data emitted by the stream Hide the details
<Result> = <Stream name>.OutgoingData
<Result>: Integer constant (or combination of constants) Type of data currently emitted: | | StreamSound | The sound data is emitted. | StreamVideo | The Video data is emitted. |
<Stream name>: Character string Name of the stream or name of the Conference control associated with the stream.
Changing the type of data emitted by the stream Hide the details
<Stream name>.OutgoingData = <New Data Type>
<Stream name>: Character string Name of the stream or name of the Conference control associated with the stream. <New Data Type>: Integer constant (or combination of constants) New type of data to emit. This modification will be taken into account during the next connection. | | StreamSound | The Sound data is emitted. | StreamVideo | The Video data is emitted. |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|