Layout2D.CoordinateSystem

Returns the coordinate system of the layout.

Syntax Parameters Return/assignment Value
- - CoordinateSystem

SVB Example

Changing the coordinate system of a graph:

Option Base 1
Option Explicit
Sub Main
    Dim GraphLayout As Layout2D
    Set GraphLayout = ActiveGraph.Content
    'change the coordinate system of the open graph
    'from the standard coordinate system to polar.
    GraphLayout.CoordinateSystem = scgPolar
End Sub