aspnetcore-js-devexpress-dot-richedit-38fa6ac3.md
Lists commands contained in the References tab.
export enum ReferencesTabCommandId {
AddTextMenu = 439,
InsertCaptionMenu = 440,
InsertTableOfFiguresMenu = 441,
InsertTableOfContents = 377,
SetParagraphBodyTextLevel = 385,
SetParagraphHeading1Level = 386,
SetParagraphHeading2Level = 387,
SetParagraphHeading3Level = 388,
SetParagraphHeading4Level = 389,
SetParagraphHeading5Level = 390,
SetParagraphHeading6Level = 391,
SetParagraphHeading7Level = 392,
SetParagraphHeading8Level = 393,
SetParagraphHeading9Level = 394,
CreateFigureCaptionField = 382,
CreateTableCaptionField = 383,
CreateEquationCaptionField = 381,
CreateTableOfFiguresField = 379,
CreateTableOfTablesField = 380,
CreateTableOfEquationsField = 378,
UpdateTableOfContents = 384
}
| Name | Description |
|---|---|
AddTextMenu |
A command that shows the Add Text menu.
|
| CreateEquationCaptionField |
A command that creates an equation caption.
|
| CreateFigureCaptionField |
A command that creates a figure caption.
|
| CreateTableCaptionField |
A command that creates a table caption.
|
| CreateTableOfEquationsField |
A command that creates a table of equations.
|
| CreateTableOfFiguresField |
A command that creates a table of figures.
|
| CreateTableOfTablesField |
A command that creates a table of tables.
|
| InsertCaptionMenu |
A command that shows the Insert Caption menu.
|
| InsertTableOfContents |
A command that inserts a Table of Contents.
|
| InsertTableOfFiguresMenu |
A command that shows the Insert Table of Figures menu.
|
| SetParagraphBodyTextLevel |
A command that applies the Body (default) style to text.
|
| SetParagraphHeading1Level |
A command that applies the Heading 1 built-in style to text.
|
| SetParagraphHeading2Level |
A command that applies the Heading 2 built-in style to text.
|
| SetParagraphHeading3Level |
A command that applies the Heading 3 built-in style to text.
|
| SetParagraphHeading4Level |
A command that applies the Heading 4 built-in style to text.
|
| SetParagraphHeading5Level |
A command that applies the Heading 5 built-in style to text.
|
| SetParagraphHeading6Level |
A command that applies the Heading 6 built-in style to text.
|
| SetParagraphHeading7Level |
A command that applies the Heading 7 built-in style to text.
|
| SetParagraphHeading8Level |
A command that applies the Heading 8 built-in style to text.
|
| SetParagraphHeading9Level |
A command that applies the Heading 9 built-in style to text.
|
| UpdateTableOfContents |
A command that updates a Table of Contents.
|
Pass the ReferencesTabCommandId‘s field to the executeCommand(commandId) method to execute a command:
richEdit.executeCommand(DevExpress.RichEdit.ReferencesTabCommandId.UpdateTableOfContents);
The ReferencesTabItemId enum contains identifiers of the References tab’s ribbon items. Use an identifier to get the corresponding item and then insert it into a tab or remove the item from the References tab.
See Also