Property ALDSAudioOut.TALDSAudioOut.Graph
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: TALDSAudioOut
Contents |
Syntax
Delphi:
property Graph : TDSGraph read FGraph write SetGraph;
C++ Builder:
__property TDSGraph * Graph = { read=FGraph, write=SetGraph };
Summary
The DirectShow Graph.
Description
Use this property at access the properties and methods of the
internal DirectShow filter graph.
Delphi example:
ALDSAudioOut1.Graph.Register := True;
C++ Builder example:
ALDSAudioOut1->Graph->Register = true;
Visual C++(MFC) example:
ALDSAudioOut1.Graph.Register = true;
Visual C++/CLI example:
dsAudioOut1->Graph->Register = true;
C# Example:
dsAudioOut1.Graph.Register = true;
VB Example:
DSAudioOut1.Graph.Register = True