LightningChart .NET Help
Connects this AudioInput instance to a target object that has at least one of the three event handlers defined.
Namespace:
Arction.Wpf.SignalProcessing
Assembly:
Arction.Wpf.SignalProcessing.SignalTools (in Arction.Wpf.SignalProcessing.SignalTools.dll) Version: 10.3.1
Syntaxpublic bool Connect(
Object target,
DataGeneratedEventHandler dataGenerated,
StartedEventHandler started,
StoppedEventHandler stopped
)
Public Function Connect (
target As Object,
dataGenerated As DataGeneratedEventHandler,
started As StartedEventHandler,
stopped As StoppedEventHandler
) As Boolean
public:
virtual bool Connect(
Object^ target,
DataGeneratedEventHandler^ dataGenerated,
StartedEventHandler^ started,
StoppedEventHandler^ stopped
) sealed
Parameters
- target
- Type: SystemObject
Target object that this AudioInput instance is connected with. - dataGenerated
- Type: Arction.Wpf.SignalProcessingDataGeneratedEventHandler
DataGeneratedEventHandler event handler. - started
- Type: Arction.Wpf.SignalProcessingStartedEventHandler
StartedEventHandler event handler. - stopped
- Type: Arction.Wpf.SignalProcessingStoppedEventHandler
StoppedEventHandler event handler.
Return Value
Type:
BooleanTrue if connection was created succesfully. Otherwise false.
Implements
IDataSourceConnect(Object, DataGeneratedEventHandler, StartedEventHandler, StoppedEventHandler)
See Also