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

MarkerChangedEventArgs() public method

Initializes a new instance of the LinesNeedShownEventArgs class.
public MarkerChangedEventArgs ( int line, int modificationType )
line int Line number where the marker change occured
modificationType int What type of Scintilla modification occured
        public MarkerChangedEventArgs(int line, int modificationType)
            : base(modificationType)
        {
            this._line = line;
        }
MarkerChangedEventArgs