Row Property
Syntax
CWCursor3D.Row
Data Type
Purpose
Specifies the row index of the plot data point that the cursor is snapped to.
Remarks
On a simple surface, as you move down a row, you move in down the x axis.
This property is valid only if the 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