C# Class ScintillaNET.NativeScintillaEventArgs

Provides data for native Scintilla Events
All events fired from the INativeScintilla Interface uses NativeScintillaEventArgs. Msg is a copy of the Notification Message sent to Scintilla's Parent WndProc and SCNotification is the SCNotification Struct pointed to by Msg's lParam.
Inheritance: System.EventArgs
Mostrar archivo Open project: NekoProject/NekoKun Class Usage Examples

Public Methods

Method Description
NativeScintillaEventArgs ( Message msg, SCNotification notification ) : System

Initializes a new instance of the NativeScintillaEventArgs class.

Method Details

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