Sets the channel property.

Namespace:  GrassValley.Mseries.Control
Assembly:  GrassValley.Mseries.Control (in GrassValley.Mseries.Control.dll) Version: 1.0.0.0

Syntax

C#
public void SetChannelProperty(
	string propertyName,
	Object propertyValue
)
Visual Basic (Declaration)
Public Sub SetChannelProperty ( _
	propertyName As String, _
	propertyValue As Object _
)
Visual C++
public:
virtual void SetChannelProperty(
	String^ propertyName, 
	Object^ propertyValue
) sealed

Parameters

propertyName
Type: System..::.String
Name of the property.
propertyValue
Type: System..::.Object
Property value.

Implements

ISimpleController..::.SetChannelProperty(String, Object)

Remarks

Use this function to set one or more channel properties. Channel properties include “autoStop”, ”listPause”, “listRepeat”, and more. Putting more than one string in the property specification sets multiple property values. Property names should be separated by white space or the ‘+’ character. When a single parameter is set, propertyValue should be of the appropriate type. When specifying multiple values, propertyValue should be an object array, each of the appropriate type. The order of elements in this array must match the order of strings in the property specification.

See Also