DataGridView.CellValidated イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
セルの検証が終了した後に発生します。
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
注釈
このイベントの処理は、セル値の検証後の処理に役立ちます。
イベントを処理する方法の詳細については、次を参照してください。処理とイベントの発生します。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET