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