Pin List PLMultiWaterfall.TPLMultiWaterfall.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: TPLMultiWaterfall
Contents |
Syntax
Delphi:
property InputPins : TOWPinList read FInputPins write FInputPins;
C++ Builder:
__property TOWPinList InputPins = { read=FInputPins, write=FInputPins };
Summary
The input pins for the component.
Description
A list of channel data pins. Use this property to access the
individual pins associated with each data channel.
Delphi example:
PLMultiWaterfall1.InputPins[0].Connect( SLGenericRealGen1.OutputPin );
C++ Builder example:
PLMultiWaterfall1->InputPins->Pins[0]->Connect( SLGenericRealGen1->OutputPin );
Visual C++(MFC) example:
PLMultiWaterfall1.InputPins[0].Connect( SLGenericRealGen1.OutputPin );
C# example:
multiWaterfall1.InputPins[0].Connect( genericRealGen1.OutputPin );
C++/CLI example:
multiWaterfall1->InputPins[0]->Connect( genericRealGen1->OutputPin );
VB example:
MultiWaterfall1.InputPins(0).Connect( GenericRealGen1.OutputPin )