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

TextModifiedEventArgs() public method

Initializes a new instance of the TextModifiedEventArgs class.
public TextModifiedEventArgs ( int modificationType, bool isUserChange, int markerChangedLine, int position, int length, int linesAddedCount, string text ) : System
modificationType int Specifies the modification type
isUserChange bool true if the change was a direct result of user interaction
markerChangedLine int the line # of where the marker change occured (if applicable)
position int document position where the change occured
length int _length of the change occured
linesAddedCount int the # of lines added or removed as a result of the change
text string affected text of the change
return System
        public TextModifiedEventArgs(int modificationType, bool isUserChange, int markerChangedLine, int position, int length, int linesAddedCount, string text)
            : base(modificationType)
        {
            this._isUserChange = isUserChange;
            this._markerChangedLine = markerChangedLine;
            this._position = position;
            this._length = length;
            this._linesAddedCount = linesAddedCount;
            this._text = text;
        }