DataGridView.CellValidated イベント

定義

セルの検証が終了した後に発生します。

public:
 event System::Windows::Forms::DataGridViewCellEventHandler ^ CellValidated;
public event System.Windows.Forms.DataGridViewCellEventHandler CellValidated;
public event System.Windows.Forms.DataGridViewCellEventHandler? CellValidated;
member this.CellValidated : System.Windows.Forms.DataGridViewCellEventHandler 
Public Custom Event CellValidated As DataGridViewCellEventHandler 

イベントの種類

次のコード例では、 イベントを使用して プロパティを CellValidated クリアする方法を ErrorText 示します。 この例では、 イベントは CellValidating 、ユーザーがセルに無効なデータを入力した場合に を設定 ErrorText します。 この例は、 イベントで使用できる大きな例の SelectionChanged 一部です。

private void DataGridView1_CellValidated(object sender,
    DataGridViewCellEventArgs e)
{
    // Clear any error messages that may have been set in cell validation.
    DataGridView1.Rows[e.RowIndex].ErrorText = null;
}
Private Sub CellValidated(ByVal sender As Object, _
    ByVal e As DataGridViewCellEventArgs) _
    Handles DataGridView1.CellValidated

    ' Clear any error messages that may have been set in cell validation.
    DataGridView1.Rows(e.RowIndex).ErrorText = Nothing
End Sub

注釈

このイベントの処理は、セル値の検証後の処理に役立ちます。

イベントを処理する方法の詳細については、次を参照してください。処理とイベントの発生します。

適用対象

こちらもご覧ください