Property DSGraphProperty.TDSGraph.Register
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 Register : Boolean read FRegister write SetRegister default False;
C++ Builder:
__property bool Register = { read=FRegister, write=SetRegister, default=False };
Summary
Registers the graph into the Windows Running Object Table.
Description
If set to true, the graph will be registered into the Running
Object Table, and will be available for viewing/debugging by
the Microsoft GraphEdit utility.
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