System.Windows.Forms.Control.FireValidated C# (CSharp) Method

FireValidated() private method

private FireValidated ( ) : void
return void
		internal virtual void FireValidated () {
			OnValidated (EventArgs.Empty);
		}

Usage Example

Example #1
0
        private bool ValidateControl(Control c)
        {
            CancelEventArgs e = new CancelEventArgs();

            c.FireValidating(e);

            if (e.Cancel)
            {
                return(false);
            }

            c.FireValidated();
            return(true);
        }
All Usage Examples Of System.Windows.Forms.Control::FireValidated
Control