Pin List SLScope.TSLDataChart.XInputPins
(Automated Syncronization with Documentation) |
(Automated Syncronization with Documentation) |
Latest revision as of 00:11, 26 June 2013
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 XInputPins : TOWPinList read FXInputPins write FXInputPins;
C++ Builder:
__property TOWPinList XInputPins = { read=FXInputPins, write=FXInputPins };
Summary
The X input pins for the component.
Description
A list of channel X data pins. Use this property to access
the individual X pin associated with each data channel.
If the X pin for a channel is not connected, of the X stream is not active, a ramp X data will be generated automatically.
Delphi example:
SLScope1.XInputPins[0].Connect( SLGenericRealGen1.OutputPin );
C++ Builder example:
SLScope1->XInputPins->Pins[0]->Connect( SLGenericRealGen1->OutputPin );
Visual C++(MFC/Win32) example:
SLScope1.XInputPins[0].Connect( SLGenericRealGen1.OutputPin );
C# example:
scope1.XInputPins[0].Connect( genericRealGen1.OutputPin );
C++/CLI example:
scope1->XInputPins[0]->Connect( genericRealGen1->OutputPin );
VB example:
Scope1.XInputPins(0).Connect( GenericRealGen1.OutputPin )