Pin MLDSGraphView.TMLDSGraphView.GraphPin
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: TMLDSGraphView
Contents |
Syntax
Delphi:
property GraphPin : TOWMLGraphSinkPin read FGraphPin write FGraphPin;
C++ Builder:
__property TOWMLGraphSinkPin * GraphPin = { read=FGraphPin, write=FGraphPin };
Summary
The DirectShow Graph pin of the filter.
Description
Connect this pin to a GraphPin of a DirectShow component you
want to visualize.
Delphi example:
MLDSGraphView1.GraphPin.Connect( ALDSAudioOut1.Graph.GraphPin );
C++ Builder example:
MLDSGraphView1->GraphPin->Connect( ALDSAudioOut1->Graph->GraphPin );
Visual C++(MFC/Win32) example:
MLDSGraphView1.GraphPin.Connect( ALDSAudioOut1.Graph.GraphPin );
Visual C++/CLI example:
dsGraphView1->GraphPin->Connect( dsAudioOut1->Graph->GraphPin );
C# example:
dsGraphView1.GraphPin.Connect( dsAudioOut1.Graph.GraphPin );
VB example:
DSGraphView1.GraphPin.Connect( DSAudioOut1.Graph.GraphPin )