共用方式為


Cursor.SelectionColor 屬性

定義

取得或設定反白顯示一段資料範圍的半透明色彩。

public:
 property System::Drawing::Color SelectionColor { System::Drawing::Color get(); void set(System::Drawing::Color value); };
[System.ComponentModel.Bindable(true)]
[System.ComponentModel.TypeConverter(typeof(System.Drawing.ColorConverter))]
public System.Drawing.Color SelectionColor { get; set; }
[<System.ComponentModel.Bindable(true)>]
[<System.ComponentModel.TypeConverter(typeof(System.Drawing.ColorConverter))>]
member this.SelectionColor : System.Drawing.Color with get, set
Public Property SelectionColor As Color

屬性值

Color

反白顯示範圍的色彩。 預設值為 LightGray,而且 Alpha 值為 120。

屬性

備註

這個屬性會決定範圍選取範圍的色彩,而且可以設定為任何有效的 ARGB (Alpha、紅色、綠色、藍色) 值。 如果未提供判斷透明度層級的 Alpha 值,則會使用預設的 Alpha 值120。

您可以為 X 和 Y 軸資料指標設定選取的色彩,這會分別使用物件的 CursorXCursorY 屬性來執行 ChartArea 。 如果範圍只是沿著 X 軸選取,則 SelectionColor 會使用 X 軸游標的值; 如果範圍僅沿著 y 軸選取,則 SelectionColor 會使用 y 軸資料指標的值。 如果同時在這兩個軸上選取範圍,則 SelectionColor Y 軸游標的值也會用於選取的色彩。

適用於