Allows querying and manipulating the volume level of a control on a per channel basis

Namespace: NMixerProNET
Assembly: MixerProNET (in MixerProNET.dll) Version: 2.1.0.27196 (2.1.0)

Syntax

C#
public float this[
	int channel
] { get; set; }
Visual Basic
Public Property Volume ( _
	channel As Integer _
) As Single
	Get
	Set
Visual C++
public:
property float Volume[int channel] {
	float get (int channel);
	void set (int channel, float value);
}

Parameters

channel
Type: System..::..Int32
The channel number for which to query or modify its value

Remarks

Always use the Channels property to query the number of channels supported by the control.

When the control is managing a session, the channel parameter is ignored and it's the same as calling the standard Volume property.

See Also