AutoGridDoc Object
The AutoGridDoc object represents a grid document. Grid objects are created by the DocuĀments.Open method of the Application object. Values within a grid are accessed through the XValue, YValue, and ZValue properties.
Properties
Methods
Example
The following script demonstrates how the grid object is used in reference to the Documents collection.
Sub Main
'Declares GrapherApp as an object
Dim GrapherApp As Object
'Creates an instance of the Grapher Application object
'and assigns it to the variable named "GrapherApp"
Set GrapherApp = CreateObject("Grapher.Application")
'Makes Grapher visible
GrapherApp.Visible = True
'Declares Grid as an object
Dim Grid As Object
'Creates a grid document in Grapher and
'assigns it to the variable named "Grid"
Set Grid = GrapherApp.Documents.Open("helens2.grd")
End Sub