FastColoredTextBoxNS.Command.Execute C# (CSharp) 메소드

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

public abstract Execute ( ) : void
리턴 void
        public abstract void Execute();

Usage Example

예제 #1
0
        public void ExecuteCommand(Command cmd)
        {
            if (disabledCommands > 0)
                return;

            if (cmd is UndoableCommand)
            {
                (cmd as UndoableCommand).autoUndo = autoUndoCommands > 0;
                history.Push(cmd as UndoableCommand);
            }
            cmd.Execute();
            //
            redoStack.Clear();
        }
All Usage Examples Of FastColoredTextBoxNS.Command::Execute
Command