バージョン

EditModeValidationError イベント

ActiveCell に入力検証エラーがある場合に発生します。
シンタックス
'宣言
 
Public Event EditModeValidationError As EventHandler(Of EditModeValidationErrorEventArgs)
public event EventHandler<EditModeValidationErrorEventArgs> EditModeValidationError
イベント データ

イベント ハンドラが、このイベントに関連するデータを含む、EditModeValidationErrorEventArgs 型の引数を受け取りました。次の EditModeValidationErrorEventArgs プロパティには、このイベントの固有の情報が記載されます。

プロパティ解説
Cell Infragistics.Windows.DataPresenter.Events.EditModeEventArgsから継承されます。Infragistics.Windows.DataPresenter.Cell オブジェクトを返します(読み取り専用)。
Editor Infragistics.Windows.DataPresenter.Events.EditModeEventArgsから継承されます。Infragistics.Windows.Editors.ValueEditor を返します(読み取り専用)。
ErrorMessage エラー メッセージを取得または設定します。
Exception 検証エラーに関連する例外を取得します。
ForceExitEditMode 編集モードが強制的に終了されるかどうかを示します。たとえば、アプリケーションが閉じられるときなどです。
Handled System.Windows.RoutedEventArgsから継承されます。Gets or sets a value that indicates the present state of the event handling for a routed event as it travels the route.
InvalidValueBehavior 無効な値動作を取得または設定します。
OriginalSource System.Windows.RoutedEventArgsから継承されます。Gets the original reporting source as determined by pure hit testing, before any possible System.Windows.RoutedEventArgs.Source adjustment by a parent class.
RoutedEvent System.Windows.RoutedEventArgsから継承されます。Gets or sets the System.Windows.RoutedEventArgs.RoutedEvent associated with this System.Windows.RoutedEventArgs instance.
Source System.Windows.RoutedEventArgsから継承されます。Gets or sets a reference to the object that raised the event.
解説

ユーザーが無効な値を入力した後に ActiveCell で編集モードを終了しようとするとこのイベントが発生します。デフォルトの動作は、エラー メッセージを表示してセルの編集モードを終了しません。FieldSettingsFieldSettings.InvalidValueBehavior プロパティを設定するか、このイベントにフックし、関連付けられたイベント引数の各種プロパティを設定して、エラー メッセージに表示する内容など動作を制御することで、このデフォルト動作を変更できます。

注: 編集モードを終了するには、ActiveCellCell.EndEditMode メソッドを呼び出す、ActiveCell を変更する、ActiveRecord を変更または DataPresenterCommandsDataPresenterCommands.EndEditModeAndAcceptChanges または DataPresenterCommands.EndEditModeAndDiscardChanges コマンドで ExecuteCommand(RoutedCommand) を呼び出すことができます。

参照