Direction1Col Property
The Direction1Col property returns or sets the first angle column for a polar vector plot. Returns a Long.
Syntax
object.Direction1Col
object.Direction1Col = Direction1Col
Parameter | Type | Description |
Direction1Col | Long | required, column A is equal to 1 |
Example 1
This example shows how to return the first angle column.
Debug.Print "Angle column = "; PolarVectorPlot.Direction1Col
Example 2
This example shows how to set the first angle column to column D.
PolarVectorPlot.Direction1Col = 4
Used by: AutoPolarVectorPlot
object