FastColoredTextBoxNS.Command.Execute C# (CSharp) Method

Execute() public abstract method

public abstract Execute ( ) : void
return void
        public abstract void Execute();

Usage Example

        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