Back to Devexpress

ContextMenuCommandId Enum

aspnetcore-js-devexpress-dot-richedit-682ab292.md

latest6.0 KB
Original Source

ContextMenuCommandId Enum

Lists commands contained in the Context Menu.

Declaration

ts
export enum ContextMenuCommandId {
    ApplySpellingSuggestion = 318,
    NoSpellingSuggestions = 457,
    IgnoreSpellingError = 314,
    IgnoreAllSpellingErrors = 315,
    AddWordToDictionary = 317,
    OpenHyperlink = 195,
    ShowEditHyperlinkDialog = 194,
    RemoveHyperlink = 196,
    UpdateField = 179,
    ToggleFieldCodes = 180,
    RestartNumberedList = 170,
    ContinueNumberedList = 189,
    Cut = 10,
    Copy = 9,
    Paste = 8,
    TableMenu = 239,
    InsertTableColumnToTheLeft = 243,
    InsertTableColumnToTheRight = 244,
    InsertTableRowAbove = 246,
    InsertTableRowBelow = 245,
    ShowInsertTableCellsDialog = 252,
    ShowDeleteTableCellsDialog = 253,
    ShowSplitCellsDialog = 255,
    MergeTableCells = 254,
    DecreaseParagraphIndent = 34,
    IncreaseParagraphIndent = 35,
    ShowFontDialog = 52,
    ShowParagraphDialog = 53,
    ShowBookmarkDialog = 58,
    ShowHyperlinkDialog = 59,
    ChangeFloatingObjectTextWrapTypeMenu = 454,
    SetFloatingObjectInlineTextWrapType = 374,
    SetFloatingObjectSquareTextWrapType = 346,
    SetFloatingObjectTightTextWrapType = 347,
    SetFloatingObjectThroughTextWrapType = 348,
    SetFloatingObjectTopAndBottomTextWrapType = 349,
    SetFloatingObjectBehindTextWrapType = 350,
    SetFloatingObjectInFrontOfTextWrapType = 351,
    FloatingObjectBringForwardMenu = 455,
    FloatingObjectBringForward = 361,
    FloatingObjectBringToFront = 362,
    FloatingObjectBringInFrontOfText = 363,
    FloatingObjectSendBackwardMenu = 456,
    FloatingObjectSendBackward = 364,
    FloatingObjectSendToBack = 365,
    FloatingObjectSendBehindText = 366,
    SelectAll = 106
}

Members

NameDescription
AddWordToDictionary

Adds a word to the dictionary.

| | ApplySpellingSuggestion |

Replaces the underlined word with the word the spell checker suggests.

| | ChangeFloatingObjectTextWrapTypeMenu |

A command that shows the Wrap Text menu.

| | ContinueNumberedList |

Adds items of the numbered list to the previous numbered list and restores sequential numbering.

| | Copy |

A command that copies the selected text to the clipboard.

| | Cut |

A command that cuts the selected text and place it in the clipboard.

| | DecreaseParagraphIndent |

Decreases the indent of the paragraph.

| | FloatingObjectBringForward |

A command that brings a floating object forward.

| | FloatingObjectBringForwardMenu |

A command that shows the Bring to Front menu.

| | FloatingObjectBringInFrontOfText |

A command that brings a floating object in front of the text.

| | FloatingObjectBringToFront |

A command that brings a floating object to the front.

| | FloatingObjectSendBackward |

A command that sends a floating object backward.

| | FloatingObjectSendBackwardMenu |

A command that shows the Send to Back menu.

| | FloatingObjectSendBehindText |

A command that sends a floating object behind the text.

| | FloatingObjectSendToBack |

A command that sends a floating object to the back.

| | IgnoreAllSpellingErrors |

Skips all instances of the word in the document without changing it.

| | IgnoreSpellingError |

Skips the word without changing it.

| | IncreaseParagraphIndent |

Increases the indent of the paragraph.

| | InsertTableColumnToTheLeft |

A command that inserts a column in the table to the left of the selected row.

| | InsertTableColumnToTheRight |

A command that inserts a column in the table to the right of the selected row.

| | InsertTableRowAbove |

A command that inserts a row in the table above the selected row.

| | InsertTableRowBelow |

A command that inserts a row in the table below the selected row.

| | MergeTableCells |

A command that merges the selected cells.

| | NoSpellingSuggestions |

Informs the user that the spell checker has no spelling suggestion for the underlined word.

| | OpenHyperlink |

Opens the hyperlink in a new tab.

| | Paste |

A command that pastes the text from the clipboard over the selection.

| | RemoveHyperlink |

Removes a hyperlink.

| | RestartNumberedList |

Starts a new numbered list from the selected item.

| | SelectAll |

Selects the entire main sub-document content.

| | SetFloatingObjectBehindTextWrapType |

A command that places the floating object behind the text.

| | SetFloatingObjectInFrontOfTextWrapType |

A command that places the floating object in front of the text.

| | SetFloatingObjectInlineTextWrapType |

A command that transforms the floating object into an inline object.

| | SetFloatingObjectSquareTextWrapType |

A command that wraps the text around the floating object.

| | SetFloatingObjectThroughTextWrapType |

A command that applies the Through text wrapping style to the floating object.

| | SetFloatingObjectTightTextWrapType |

A command that applies the Tight text wrapping style to the floating object.

| | SetFloatingObjectTopAndBottomTextWrapType |

A command that places text above and below the floating object.

| | ShowBookmarkDialog |

A command that shows the Bookmark dialog.

| | ShowDeleteTableCellsDialog |

A command that shows the Insert Cells dialog.

| | ShowEditHyperlinkDialog |

A command that shows the Hyperlink dialog.

| | ShowFontDialog |

A command that shows the Font dialog.

| | ShowHyperlinkDialog |

A command that shows the Hyperlink dialog.

| | ShowInsertTableCellsDialog |

A command that shows the Insert Cells dialog.

| | ShowParagraphDialog |

A command that shows the Paragraph dialog.

| | ShowSplitCellsDialog |

A command that shows the Spit Cells dialog.

| | TableMenu |

A command that shows the table’s Insert menu.

| | ToggleFieldCodes |

Toggles the field view between the field code and the field result.

| | UpdateField |

Updates the field result.

|