Graph.Save

Saves the document.

Syntax Parameters Return Value
- This function has no parameters. This function does not return a value.

SVB Example

Saving all open graphs:

Option Base 1
Option Explicit
Sub Main
    Dim g As Graph
    'save every open graph
    For Each g In Graphs
        G.Save()
    Next g
End Sub