Plot Property
Syntax
Set CWCursor3D.Plot
Data Type
Purpose
Specifies the plot that the cursor is snapped to.
Remarks
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