Description
Saves the diagram to the specified location given in the FullFilePath. PARAMETERS: FullFilePath (String).
Syntax
Public Function SaveFile( _ ByVal FullFilePath As Variant _ )
Parameters
- FullFilePath
Example
Sub Main Dim d As Diagram Set d = DiagramManager.ActiveDiagram ‘save the file as it is (File - Save) d.SaveFile(““) ‘save to a different file (File - Save As) d.SaveFile(“d:\embarcadero\erstudio\pubs.dm1”) End Sub
See Also