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

Clear() public method

Removes all text and styles associated with the annotation.
public Clear ( ) : void
return void
        public virtual void Clear()
        {
            this.CheckInvalid();

            // Remove the annotation
            this._scintilla.DirectMessage(NativeMethods.SCI_ANNOTATIONSETTEXT, new IntPtr(this._lineIndex), IntPtr.Zero);
        }