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

AnnotationChangedEventArgs() public method

Initializes a new instance of the AnnotationChangedEventArgs class.
public AnnotationChangedEventArgs ( int lineIndex, int lineCountDelta ) : System
lineIndex int The document line index of the annotation that changed.
lineCountDelta int The number of lines added to or removed from the annotation that changed.
return System
        public AnnotationChangedEventArgs(int lineIndex, int lineCountDelta)
        {
            this._lineIndex = lineIndex;
        }
AnnotationChangedEventArgs