CursorEventArgs.NewSelectionStart 属性

定义

获取或设置选定范围的起始位置。 还会根据事件设置该范围的起始位置。

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

属性值

一个 double 值,表示选定范围的起始位置。

注解

属性NewSelectionStart表示游标的新位置,并且可以在 和 CursorPositionChanged 事件中使用CursorPositionChanging来获取游标位置。 还可以在 事件中 CursorPositionChanging 使用它来设置光标位置。

请注意,在 事件中 CursorPositionChanging 设置此属性将不起作用;在此事件中, NewSelectionStart 属性的值 NaN 将为 。

所选范围的开始位置不一定小于所选范围的结束位置。 起始位置是用户拳头在图表区域中单击的位置,结束位置是引发事件时鼠标的位置。

若要确定引发事件的图表区域,请使用 ChartArea 属性。

Axis使用 属性可确定此结束位置是否针对沿主要轴、次要 X 轴或 Y 轴选择的范围。

适用于