diff --git a/components/editor/built-in-tools.md b/components/editor/built-in-tools.md index 6721728197..5f2a4e4f8b 100644 --- a/components/editor/built-in-tools.md +++ b/components/editor/built-in-tools.md @@ -31,7 +31,7 @@ The sections below list the tools that come with the editor and provide the foll * `Command Name` - the `commandName` of the tool for [executing it programmatically](#programmatic-execution). -* `Tool Type` - the type of the tool - whether it is a button or a dropdown. Only buttons can be added to tool groups in the [toolbar]({%slug editor-toolbars%}). +* `Tool Type` - the type of the tool - whether it is a button, a dropdown or a color tool. Only buttons can be added to tool groups in the [toolbar]({%slug editor-toolbars%}). * `Description` - more detailed information on what the tool does. @@ -72,6 +72,22 @@ The `Inline` tools work with or add an inline HTML element. Example of these are new Bold() new ToolCommandArgs(string commandName) + + BackColor + backColor + Color + Change the background color of the selected text + new BackgroundColor() + new FormatCommandArgs(string commandName, string Value) + + + ForeColor + foreColor + Color + Change the font color of a selected text + new ForeColor() + new FormatCommandArgs(string commandName, string Value) + CreateLink createLink @@ -408,22 +424,6 @@ There are commands without built-in tools, but can be [executed programmatically N/A new HtmlCommandArgs(string commandName, string value) - - Back Color - backColor - N/A - Change the background color of the selected text - N/A - new FormatCommandArgs(string commandName, string Value) - - - Fore Color - foreColor - N/A - Change the font color of a selected text - N/A - new FormatCommandArgs(string commandName, string Value) -