NppSharp.ModifiedEventArgs.ModifiedEventArgs C# (CSharp) Метод

ModifiedEventArgs() публичный Метод

Creates the event arguments object.
public ModifiedEventArgs ( ModificationType type, TextPtr text, TextLocation location, bool userAction, bool undo, bool redo, int linesAdded ) : System
type ModificationType The type of modification that occurred.
text TextPtr The text inserted or deleted.
location TextLocation The location of the modification.
userAction bool A flag indicating if this action was caused by the user.
undo bool A flag indicating if this action is part of an undo process.
redo bool A flag indicating if this action is part of a redo process.
linesAdded int The number of lines added by this modification.
Результат System
        public ModifiedEventArgs(ModificationType type, TextPtr text, TextLocation location, bool userAction, bool undo, bool redo, int linesAdded)
        {
            ModificationType = type;
            Text = text;
            Location = location;
            UserAction = userAction;
            Undo = undo;
            Redo = redo;
            LinesAdded = linesAdded;
        }
ModifiedEventArgs