Validator ValidateAll Method CleanCode C# Libraries v1.2.03 API
Validates all registered form controls.

Namespace: CleanCode.Forms
Assembly: CleanCode (in CleanCode.dll) Version: 1.2.3.0 (1.2.03)
Syntax

public void ValidateAll()
Remarks

Typically this only needs to be called during initialization just after all form controls are registered. Note that if during initialization you assign values to each control and use the TextChanged event handler, this method would not be needed at all. Rather, use the Validate method in each control's TextChanged event handler (or other key or mouse event handler as you deem appropriate).
See Also