Prizm.Main.Forms.ControlMaskExtensions.SetAsIdentifier C# (CSharp) Method

SetAsIdentifier() public static method

This method set all characters TextEdit.Text property to Upper register
public static SetAsIdentifier ( this textEdit ) : void
textEdit this the concrete TextEdit control
return void
        public static void SetAsIdentifier(this TextEdit textEdit)
        {
            textEdit.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;

            textEdit.EditValueChanged += textEdit_EditValueChanged;
        }