Pin SLWaterfall.TSLWaterfallCursor.YOutputPin
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: TSLWaterfallCursor
Contents |
Syntax
Delphi:
property YOutputPin : TSLOWRealSourcePin read FYOutputPin write FYOutputPin;
C++ Builder:
__property TSLOWRealSourcePin * YOutputPin = { read=FYOutputPin, write=FYOutputPin };
Summary
The Real(double) output pin of the cursor for Y data.
Description
YOutputPin is the signal output pin of the cursor.
You can connect this pin to any pin accepting Real(double) buffer data.
This pin will send the waterfall data currently under the horizontal cursor. By connecting a Scope component you can observe the data under the cursor in greater detail.
Delphi example:
<c>SLWaterfall1.Cursors[ 0 ].YOutputPin.Connect( SLScope1.InputPins[0] );</c>
C++ Builder example:
<c>SLWaterfall1->Cursors->Items[ 0 ]->YOutputPin->Connect( SLScope1->InputPins->Pins[0] );</c>
Visual C++(MFC/Win32) example:
<c>SLWaterfall1.Cursors[ 0 ].YOutputPin.Connect( SLScope1.InputPins[0] );</c>
Visual C++/CLI example:
<c>waterfall1->Cursors[ 0 ]->YOutputPin->Connect( scope1->InputPins[0] );</c>
C# example:
<c>waterfall1.Cursors[ 0 ].YOutputPin.Connect( scope1.InputPins[0] );</c>
VB example:
<c>Waterfall1.Cursors[ 0 ].XYOutputPin.Connect( Scope1.InputPins(0) )</c>