Click or drag to resize

ValidatingStringEventHandler Delegate

Event handler to validate content of Gui elements that contain strings (like TextBox).

Namespace: Altaxo.Gui
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public delegate void ValidatingStringEventHandler(
	Object sender,
	ValidationEventArgs<string> e
)

Parameters

sender  Object
Sender of the validation request.
e  ValidationEventArgsString
Validating event args. In case that the validation is not successfull, the receiver has to add an error message to the event args.
See Also