System.Windows.Forms.Form.ValidateChildren C# (CSharp) Method

ValidateChildren() private method

private ValidateChildren ( ) : bool
return bool
		public override bool ValidateChildren ()
		{
			return base.ValidateChildren ();
		}

Same methods

Form::ValidateChildren ( ValidationConstraints validationConstraints ) : bool

Usage Example

 public static bool HasErrors(this ErrorProvider ep, Form frm)
 {
     try
     {
         Clear(ep);
         frm.ValidateChildren();
         return _count != 0;
     }
     catch
     {
         return false;
     }
 }
All Usage Examples Of System.Windows.Forms.Form::ValidateChildren
Form