DHTML command identifier that a tool can react to.
If for example the identifier "Bold" is selected, the tool will toggle between on and off
in toolbars and menus when the cursor moves around in the editor body.
Namespace:
EPiServer.EditorAssembly: EPiServer (in EPiServer.dll) Version: 6.1.379.0
Syntax
| C# |
|---|
[FlagsAttribute] public enum CommandIdentifiers |
Members
| Member name | Description | |
|---|---|---|
| None |
The tool does not react to editor caret position.
| |
| Bold |
The tool should be toggled when the active text in the editor is strong.
| |
| InsertOrderedList |
The tool will be toggled when an ordered list is active in the editor.
| |
| InsertUnorderedList |
The tool will be toggled when an ordered list is active in the editor.
| |
| Italic |
The tool will be toggled when the active text is emphasized (default italic).
| |
| JustifyCenter |
Tool will be toggled when the caret is positioned in text that is center justified.
| |
| JustifyLeft |
Tool will be toggled when the caret is positioned in text that is left justified.
| |
| JustifyRight |
Tool will be toggled when the caret is positioned in text that is right justified.
| |
| Underline |
Tool will be toggled when the caret is positioned in text that is underlined.
| |
| FontName |
Tool will be toggled when the caret is positioned in text with a specific font selected.
| |
| FontSize |
Tool will be toggled when the caret is positioned in text with a specific font size.
| |
| ForeColor |
Tool will be toggled when the caret is positioned in text with a specific font color.
| |
| FormatParagraph |
Tool will be toggled when the caret is positioned in text with a specific formatting (H1, H2 etc.)
|
Remarks
Tools that are defined as command identifiers get their enabled scripts generated on the client.