Back to Devexpress

FloatingObjectsFormatTabCommandId Enum

aspnetcore-js-devexpress-dot-richedit-436aeca0.md

latest5.4 KB
Original Source

FloatingObjectsFormatTabCommandId Enum

Lists commands contained in the Format tab.

Declaration

ts
export enum FloatingObjectsFormatTabCommandId {
    WrapTextMenu = 450,
    PositionMenu = 451,
    BringToFrontMenu = 452,
    SendToBackMenu = 453,
    ChangeFloatingObjectFillColor = 343,
    ChangeFloatingObjectOutlineColor = 344,
    ChangeFloatingObjectOutlineWidth = 345,
    SetFloatingObjectInlineTextWrapType = 374,
    SetFloatingObjectSquareTextWrapType = 346,
    SetFloatingObjectTightTextWrapType = 347,
    SetFloatingObjectThroughTextWrapType = 348,
    SetFloatingObjectTopAndBottomTextWrapType = 349,
    SetFloatingObjectBehindTextWrapType = 350,
    SetFloatingObjectInFrontOfTextWrapType = 351,
    SetFloatingObjectTopLeftAlignment = 352,
    SetFloatingObjectTopCenterAlignment = 353,
    SetFloatingObjectTopRightAlignment = 354,
    SetFloatingObjectMiddleLeftAlignment = 355,
    SetFloatingObjectMiddleCenterAlignment = 356,
    SetFloatingObjectMiddleRightAlignment = 357,
    SetFloatingObjectBottomLeftAlignment = 358,
    SetFloatingObjectBottomCenterAlignment = 359,
    SetFloatingObjectBottomRightAlignment = 360,
    FloatingObjectBringForward = 361,
    FloatingObjectBringToFront = 362,
    FloatingObjectBringInFrontOfText = 363,
    FloatingObjectSendBackward = 364,
    FloatingObjectSendToBack = 365,
    FloatingObjectSendBehindText = 366
}

Members

NameDescription
BringToFrontMenu

A command that shows the Bring to Front menu.

| | ChangeFloatingObjectFillColor |

A command that modifies a floating object’s background fill color.

| | ChangeFloatingObjectOutlineColor |

A command that modifies a floating object’s outline color.

| | ChangeFloatingObjectOutlineWidth |

A command that changes the width of a floating object’s outline.

| | FloatingObjectBringForward |

A command that brings a floating object forward.

| | 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.

| | FloatingObjectSendBehindText |

A command that sends a floating object behind the text.

| | FloatingObjectSendToBack |

A command that sends a floating object to the back.

| | PositionMenu |

A command that shows the Position menu.

| | SendToBackMenu |

A command that shows the Send to Back menu.

| | SetFloatingObjectBehindTextWrapType |

A command that places the floating object behind the text.

| | SetFloatingObjectBottomCenterAlignment |

A command that aligns a floating object to the bottom center.

| | SetFloatingObjectBottomLeftAlignment |

A command that aligns a floating object to the bottom left.

| | SetFloatingObjectBottomRightAlignment |

A command that aligns a floating object to the bottom right.

| | 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.

| | SetFloatingObjectMiddleCenterAlignment |

A command that aligns a floating object to the middle center.

| | SetFloatingObjectMiddleLeftAlignment |

A command that aligns a floating object to the middle left.

| | SetFloatingObjectMiddleRightAlignment |

A command that aligns a floating object to the middle right.

| | 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.

| | SetFloatingObjectTopCenterAlignment |

A command that aligns a floating object to the top center.

| | SetFloatingObjectTopLeftAlignment |

A command that aligns a floating object to the top left.

| | SetFloatingObjectTopRightAlignment |

A command that aligns a floating object to the top right.

| | WrapTextMenu |

A command that shows the Wrap Text menu.

|

Remarks

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

javascript
richEdit.executeCommand(DevExpress.RichEdit.FloatingObjectsFormatTabCommandId.BringToFrontMenu);

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

See Also

CommandId