FastColoredTextBoxNS.UndoableCommand.Clone C# (CSharp) 메소드

Clone() 공개 추상적인 메소드

public abstract Clone ( ) : UndoableCommand
리턴 UndoableCommand
        public abstract UndoableCommand Clone();

Usage Example

예제 #1
0
 private void ExecuteCommand(ref int iChar)
 {
     foreach (var r in range.GetSubRanges(false))
     {
         ts.CurrentTB.Selection = r;
         var c = cmd.Clone();
         c.Execute();
         if (ts.CurrentTB.Selection.End.iChar > iChar)
         {
             iChar = ts.CurrentTB.Selection.End.iChar;
         }
         commandsByRanges.Add(c);
     }
 }
All Usage Examples Of FastColoredTextBoxNS.UndoableCommand::Clone