ValuePairs Property (Read Only)
Syntax
CWAxis3D.ValuePairs
Data Type
Purpose
Returns a CWValuePairs collection of CWValuePair objects, which specify labels for particular points on the axis.
Remarks
A ValuePair object is a label paired with a value. For example, use a CWValuePair object to add a text label such as "Test" to a numeric axis at the value 212.
Example
'Add a value pair to the graph's x-axis
CWGraph3D1.Axes.Item(1).ValuePairs.Add
'Set the name and value of the value pair just added
CWGraph3D1.Axes.Item(1).ValuePairs.Item(1).Name = "Test"
CWGraph3D1.Axes.Item(1).ValuePairs.Item(1).Value = 212