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

NativeScintillaEventArgs() public method

Initializes a new instance of the NativeScintillaEventArgs class.
public NativeScintillaEventArgs ( Message msg, SCNotification notification ) : System
msg System.Windows.Forms.Message Notification Message sent from the native Scintilla
notification SCNotification SCNotification structure sent from Scintilla that contains the event data
return System
        public NativeScintillaEventArgs(Message msg, SCNotification notification)
        {
            this._msg = msg;
            this._notification = notification;
        }
NativeScintillaEventArgs