Pin SLHilbert.TSLHilbert.OutputPin
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: TSLHilbert
Contents |
Syntax
Delphi:
property OutputPin : TSLOWComplexSourcePin read FOutputPin write FOutputPin;
C++ Builder:
__property TSLOWComplexSourcePin * OutputPin = { read=FOutputPin, write=FOutputPin };
Summary
The Complex input pin of the filter.
Description
InputPin is the Complex buffer data input pin of the filter.
You can connect this pin to any pin providing Complex buffer data.
Delphi example:
SLGenericComplex1.InputPin.Connect( SLGenericComplex2.OutputPin );
C++ Builder example:
SLGenericComplex1->InputPin->Connect( SLGenericComplex2->OutputPin );
Visual C++(MFC) example:
SLGenericComplex1.InputPin.Connect( SLGenericComplex2.OutputPin );
Visual C++/CLI example:
genericComplex1->InputPin->Connect( genericComplex2->OutputPin );
C# example:
genericComplex1.InputPin.Connect( genericComplex2.OutputPin );
VB example:
GenericComplex1.InputPin.Connect( GenericComplex2.OutputPin )