ComponentFactory.Krypton.Ribbon.KryptonRibbonGroupMaskedTextBox.OnTypeValidationCompleted C# (CSharp) Method

OnTypeValidationCompleted() protected method

Raises the TypeValidationCompleted event.
protected OnTypeValidationCompleted ( System.Windows.Forms.TypeValidationEventArgs e ) : void
e System.Windows.Forms.TypeValidationEventArgs An EventArgs that contains the event data.
return void
        protected virtual void OnTypeValidationCompleted(TypeValidationEventArgs e)
        {
            if (TypeValidationCompleted != null)
                TypeValidationCompleted(this, e);
        }