Cursor.SelectionEnd 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定範圍選取的結束位置。
public:
property double SelectionEnd { double get(); void set(double value); };
[System.ComponentModel.Bindable(true)]
[System.ComponentModel.TypeConverter(typeof(System.Windows.Forms.DataVisualization.Charting.DoubleDateNanValueConverter))]
public double SelectionEnd { get; set; }
[<System.ComponentModel.Bindable(true)>]
[<System.ComponentModel.TypeConverter(typeof(System.Windows.Forms.DataVisualization.Charting.DoubleDateNanValueConverter))>]
member this.SelectionEnd : double with get, set
Public Property SelectionEnd As Double
屬性值
範圍選取的結束位置。
- 屬性
備註
使用者可以按一下滑鼠左鍵,然後拖曳滑鼠,以選取圖表區域內的範圍。 請注意, IsUserSelectionEnabled 屬性也必須設定為 true
。 此外,可以使用 和 SelectionStart 屬性或 SetSelectionPosition 或 SetSelectionPixelPosition 方法,以程式設計方式 SelectionEnd 設定範圍選取範圍。
範圍選取範圍的結束位置會計算為游標所屬座標軸的值。 例如,如果游標屬於主要 X 軸,而且您將 屬性設定 SelectionEnd 為 2000 年 12 月 31 日的值,則選取區域的結尾會在 2000 年 12 月 31 日沿著主要 X 軸發生。
若要以程式設計方式移除範圍選取範圍,請將範圍的開頭和終點設定為 NaN 使用 SelectionEnd 和 SelectionStart 屬性,或使用 SetSelectionPosition 方法。