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

Annotation() protected method

Initializes a new instance of the Annotation class.
protected Annotation ( Scintilla scintilla, int lineIndex ) : System
scintilla Scintilla The control that created this object.
lineIndex int The zero-based index of the document line containing the annotation.
return System
        protected internal Annotation(Scintilla scintilla, int lineIndex)
        {
            this._lineIndex = lineIndex;
            this._scintilla = scintilla;
            /*_scintilla.NoteTextChanged += new EventHandler(ScintillaTextChangedHandler);*/
        }