Pin SLCartToPolar.TSLCartToPolar.MagnOutputPin
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: TSLCartToPolar
Contents |
Syntax
Delphi:
property MagnOutputPin : TSLOWRealSourcePin read FMagnOutputPin write FMagnOutputPin;
C++ Builder:
__property TSLOWRealSourcePin * MagnOutputPin = { read=FMagnOutputPin, write=FMagnOutputPin };
Summary
The Magnitude Output Pin of the filter.
Description
MagnOutputPin is the Real(double) buffer data output pin of
the component for the Magnitude data.
You can connect this pin to any pin accepting Real(double) buffer data.
Delphi example:
SLCartToPolar1.MagnOutputPin.Connect( SLScope1.InputPins[0] );
C++ Builder example:
SLCartToPolar1->MagnOutputPin->Connect( SLScope1->InputPins->Pins[0] );
Visual C++(MFC) example:
SLCartToPolar1.MagnOutputPin.Connect( SLScope1.InputPins[0] );
C# example:
cartToPolar1.MagnOutputPin.Connect( scope1.InputPins[0] );