Skip to main content
All docs
V26.1
  • InsertTabCommandId Enum

    Lists commands contained in the Insert tab.

    Declaration

    export enum InsertTabCommandId {
        ShowInsertTableDialog = 55,
        InsertPicture = 411,
        ShowBookmarkDialog = 58,
        ShowHyperlinkDialog = 59,
        InsertHeader = 220,
        InsertFooter = 221,
        InsertPageNumberField = 235,
        InsertPageCountField = 236,
        InsertFloatingTextBox = 368
    }

    Members

    Name Description
    InsertFloatingTextBox

    A command that inserts a floating text box.

    InsertFooter

    A command that creates a footer and allows you to edit it.

    InsertHeader

    A command that creates a header and allows you to edit it.

    InsertPageCountField

    A command that inserts the PAGECOUNT field at the current position.

    InsertPageNumberField

    A command that adds the PAGE field at the current position.

    InsertPicture

    A command that inserts an inline image into the document.

    ShowBookmarkDialog

    A command that shows the Bookmark dialog.

    ShowHyperlinkDialog

    A command that shows the Hyperlink dialog.

    ShowInsertTableDialog

    A command that shows Insert Table dialog.

    Remarks

    Pass the InsertTabCommandId‘s field to the executeCommand(commandId) method to execute a command:

    richEdit.executeCommand(DevExpress.RichEdit.InsertTabCommandId.ShowBookmarkDialog);
    

    The InsertTabItemId enum contains identifiers of the Insert 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 Insert tab.

    See Also