ARCed.Scintilla.CharAddedEventArgs.CharAddedEventArgs C# (CSharp) Method

CharAddedEventArgs() public method

Initializes a new instance of the CharAddedEventArgs class.
public CharAddedEventArgs ( char ch ) : System
ch char The character that was added
return System
        public CharAddedEventArgs(char ch)
        {
            this._ch = ch;
        }
CharAddedEventArgs