Name Property

3D Graph Control

Name Property

Syntax

CWValuePair.Name

Data Type

String

Purpose

Specifies the name of the value pair.

Remarks

For example, you can use the Name property to add a text label such as "Boiling Point" to a numeric axis at the value 212.

Example

'Create a value pair
CWGraph3D1.Axes.Item(1).ValuePairs.Item(1).Add 

'Set the name to "Boiling Point" and the value to 212
CWGraph3D1.Axes.Item(1).ValuePairs.Item(1).Name = "Boiling Point"
CWGraph3D1.Axes.Item(1).ValuePairs.Item(1).Value = "212"

See Also

Value