Method function DSGraphProperty.TDSGraph.SaveToFile(String) : Boolean
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:
function SaveToFile( AFileName : String ) : Boolean;
C++ Builder:
bool __fastcall SaveToFile( String AFileName );
Visual C++ (MFC):
bool SaveToFile( CTString AFileName );
Summary
Saves the graph to a *.grf file.
Description
Call this method to save the graph to a *.grf file. You can open and study the file with the DirectShow GraphEdit utility.
Delphi example:
ALDSAudioIn1.Graph.SaveToFile( 'Saved.grf' );
C++ Builder example:
ALDSAudioIn1->Graph->SaveToFile( "Saved.grf" );
Visual C++(MFC) example:
ALDSAudioIn1.Graph.SaveToFile( "Saved.grf" );
Visual C++/CLI example:
dsAudioOut1->Graph->SaveToFile( "Saved.grf" );
C# Example:
dsAudioOut1.Graph.SaveToFile( "Saved.grf" );
VB Example:
DSAudioOut1.Graph.SaveToFile( "Saved.grf" );