Pin SLCommonFilter.TSLCommonIntegerFilter.InputPin
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: TSLCommonIntegerFilter
Contents |
Syntax
Delphi:
property InputPin : TSLOWIntegerSinkPin read FInputPin write FInputPin;
C++ Builder:
__property TSLOWIntegerSinkPin * InputPin = { read=FInputPin, write=FInputPin };
Summary
The Integer input pin of the filter.
Description
InputPin is the Integer buffer data input pin of the filter.
You can connect this pin to any pin providing Integer buffer data.
Delphi example:
SLGenericInt1.InputPin.Connect( SLGenericInt2.OutputPin );
C++ Builder example:
SLGenericInt1->InputPin->Connect( SLGenericInt2->OutputPin );
Visual C++(MFC/Win32) example:
SLGenericInt1.InputPin.Connect( SLGenericInt2.OutputPin );
C# example:
genericInt1.InputPin.Connect( genericInt2.OutputPin );