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