Column Property
Syntax
CWCursor3D.Column
Data Type
Purpose
Specifies the column index of the plot data point that the cursor is snapped to.
Remarks
On a simple surface, as you move across a column, you move in the direction of the y axis.
This property is valid only if CWCursor3D.SnapMode is set to cwSnapToPlot or cwSnapNearestPlot.
Example
CWGraph3D1.Cursors.Add
Set CWGraph3D1.Cursors(1).Plot = CWGraph3D1.Plots(1)
'The cursor is snapped to the plot specified above
CWGraph3D1.Cursors(1).SnapMode = cwSnapToPlot
'Place the cursor at column 5, row 10
CWGraph3D1.Cursors(1).Column = 5
CWGraph3D1.Cursors(1).Row = 10