NppSharp.CharAddedEventArgs.CharAddedEventArgs C# (CSharp) Method

CharAddedEventArgs() public method

Creates the event arguments object.
public CharAddedEventArgs ( char ch ) : System
ch char The character added.
return System
        public CharAddedEventArgs(char ch)
        {
            Character = ch;
        }
CharAddedEventArgs