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

Change() public method

Overridden, changes the document position. Start and End should match.
public Change ( int newStart, int newEnd ) : void
newStart int Document _start position
newEnd int Document _end position
return void
        public override void Change(int newStart, int newEnd)
        {
            this.Invalidate();
            // This actually changes Start and End
            base.Change(newStart, newEnd);
        }