CursorEventArgs.NewPosition Property

Definition

Gets or sets the position of a cursor. Depending on the event, also sets the cursor's position.

public:
 property double NewPosition { double get(); void set(double value); };
public double NewPosition { get; set; }
member this.NewPosition : double with get, set
Public Property NewPosition As Double

Property Value

A double value that represents the position of a cursor along an axis.

Remarks

This property represents the new position of a cursor, and can be used in the CursorPositionChanging and CursorPositionChanged events to get the cursor position. It can also be used in the SelectionRangeChanging event to set the cursor position.

Note that setting this property in the SelectionRangeChanging event will have no effect. The NewPosition property will have a value of NaN in this event.

To determine the chart area that the event is being raised for, use the ChartArea property.

Use the Axis property to determine if this end position is for a range selected along the primary or secondary X or Y axis.

Applies to