DataGridViewCellMouseEventHandler 代理人

定義

DataGridView が発生させるマウス関連のイベントを処理するメソッドを表します。

public delegate void DataGridViewCellMouseEventHandler(System::Object ^ sender, DataGridViewCellMouseEventArgs ^ e);
public delegate void DataGridViewCellMouseEventHandler(object sender, DataGridViewCellMouseEventArgs e);
public delegate void DataGridViewCellMouseEventHandler(object? sender, DataGridViewCellMouseEventArgs e);
type DataGridViewCellMouseEventHandler = delegate of obj * DataGridViewCellMouseEventArgs -> unit
Public Delegate Sub DataGridViewCellMouseEventHandler(sender As Object, e As DataGridViewCellMouseEventArgs)

パラメーター

sender
Object

イベントのソース。

e
DataGridViewCellMouseEventArgs

イベント データを格納している DataGridViewCellMouseEventArgs

注釈

デリゲートは DataGridViewCellMouseEventHandler 、次 DataGridView のイベントを処理します。

DataGridViewCellMouseEventHandler デリゲートを作成する場合は、イベントを処理するメソッドを指定します。 イベント ハンドラーにイベントを関連付けるには、イベントにデリゲートのインスタンスを追加します。 イベント ハンドラーは、デリゲートを削除しない限り、イベントが発生するたびに呼び出されます。 イベント ハンドラー デリゲートの詳細については、「イベントの 処理と発生」を参照してください。

拡張メソッド

GetMethodInfo(Delegate)

指定したデリゲートによって表されるメソッドを表すオブジェクトを取得します。

適用対象

こちらもご覧ください