AutoContourGridMap Object

The AutoContourGridMap object controls 3D contour grid map settings.

Derived from: AutoContourBaseMap object (All methods and properties of AutoContourBaseMap apply to this object.)

Properties

Grid

Smoothing

Example

The following script demonstrates how the AutoContourGridMap object is used.

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

 

'Creates a plot document in Grapher and assigns

'it to the variable named "Plot"

Set Plot = GrapherApp.Documents.Add(grfPlotDoc)

 

'Declares Graph as an object

Dim Graph As Object

 

'Create Contour Data Map

Set Graph = Plot.Shapes.AddContourGridMapGraph(GrapherApp.Path + "\samĀ¬ples\helens2.grd")

 

'Declares ContourXYGridMap as object

Dim ContourXYGridMap as object

 

'Set the Contour Map to the ContourXYGridMap object

Set ContourXYGridMap = Graph.Plots.Item(1)

End Sub