DataGridViewEditingControlShowingEventArgs.CellStyle プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
編集するセルのセル スタイルを取得または設定します。
public:
property System::Windows::Forms::DataGridViewCellStyle ^ CellStyle { System::Windows::Forms::DataGridViewCellStyle ^ get(); void set(System::Windows::Forms::DataGridViewCellStyle ^ value); };
public System.Windows.Forms.DataGridViewCellStyle CellStyle { get; set; }
member this.CellStyle : System.Windows.Forms.DataGridViewCellStyle with get, set
Public Property CellStyle As DataGridViewCellStyle
プロパティ値
編集するセルのスタイルを表す DataGridViewCellStyle。
例外
このプロパティの設定時に指定された値が null
です。
例
次のコード例は、このイベントを処理して現在のセルの プロパティを BackColor 変更する方法を示しています。 この例を実行するには、名前付きの dataGridView1
を含むフォームにコードをDataGridView貼り付け、イベントがイベント ハンドラーに関連付けられていることをEditingControlShowing確認します。
private void dataGridView1_EditingControlShowing(object sender,
DataGridViewEditingControlShowingEventArgs e)
{
e.CellStyle.BackColor = Color.Aquamarine;
}
Private Sub dataGridView1_EditingControlShowing(ByVal sender As Object, _
ByVal e As DataGridViewEditingControlShowingEventArgs) _
Handles dataGridView1.EditingControlShowing
e.CellStyle.BackColor = Color.Aquamarine
End Sub
注釈
コントロールの表示特性をカスタマイズするには、 プロパティによって返されるコントロールのプロパティを設定するのではなく、 プロパティによって CellStyle 返されるオブジェクトのプロパティを Control 設定します。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET