FastColoredTextBoxNS.InsertTextCommand.Undo C# (CSharp) 메소드

Undo() 공개 메소드

Undo operation
public Undo ( ) : void
리턴 void
        public override void Undo()
        {
            ts.CurrentTB.Selection.Start = sel.Start;
            ts.CurrentTB.Selection.End = lastSel.Start;
            ts.OnTextChanging();
            ClearSelectedCommand.ClearSelected(ts);
            base.Undo();
        }