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