Sets the channel property.

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

Syntax

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

Parameters

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

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