Used to define a binding between a Windows Forms Control and control in a line of a mixer.

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

Syntax

C#
public void Define(
	Object control,
	string propertyName,
	string eventName
)
Visual Basic
Public Sub Define ( _
	control As Object, _
	propertyName As String, _
	eventName As String _
)
Visual C++
public:
void Define(
	Object^ control, 
	String^ propertyName, 
	String^ eventName
)

Parameters

control
Type: System..::..Object
The Windows Forms Control
propertyName
Type: System..::..String
The name of the property that will be bound to the control
eventName
Type: System..::..String
Optional. The name of the event that gets triggered when the user interacts with the control.

Remarks