ARCed.Scintilla.Annotation.Annotation C# (CSharp) 메소드

Annotation() 보호된 메소드

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.
리턴 System
        protected internal Annotation(Scintilla scintilla, int lineIndex)
        {
            this._lineIndex = lineIndex;
            this._scintilla = scintilla;
            /*_scintilla.NoteTextChanged += new EventHandler(ScintillaTextChangedHandler);*/
        }