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