ARCed.Scintilla.DropMarker.Invalidate C# (CSharp) Method

Invalidate() public method

Forces a repaint of the DropMarker
public Invalidate ( ) : void
return void
        public void Invalidate()
        {
            if (Scintilla != null && Start > 0)
            {
                //	Invalidate the old Marker Location so that we don't get "Ghosts"
                Scintilla.Invalidate(this.GetClientRectangle());
            }
        }