Pin List ALASIOAudioDevice.TALASIOAudioDevice.InputPins
From Mitov Wiki Doc
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Class: TALASIOAudioDevice
Contents |
Syntax
Delphi:
property InputPins : TOWPinList read FInputPins write FInputPins;
C++ Builder:
__property TOWPinList InputPins = { read=FInputPins, write=FInputPins };
Summary
The Audio Input Pins of the component.
Description
A list of Input Pins.
Use this property to connect the Inputs of the component to the data sources for the operation.
Delphi example:
ALASIOAudioDevice1.InputPins[0].Connect( ALSignalGen1.OutputPin );
C++ Builder example:
ALASIOAudioDevice1->InputPins->Pins[0]->Connect( ALSignalGen1->OutputPin );
Visual C++(MFC/Win32) example:
ALASIOAudioDevice1.InputPins[0].Connect( ALSignalGen1.OutputPin );
Visual C++/CLI example:
asioAudioDevice1->InputPins[0]->Connect( signalGen1->OutputPin );
C# example:
asioAudioDevice1.InputPins[0].Connect( signalGen1.OutputPin );
VB example:
ASIOAudioDevice1.InputPins(0).Connect( SignalGen1.OutputPin )