Back to Devexpress

Floating Objects

aspnet-118560-components-rich-text-editor-document-document-model-floating-objects.md

latest8.5 KB
Original Source

Floating Objects

  • Dec 09, 2024
  • 4 minutes to read

Overview

The RichEdit allows the floating objects (pictures and text boxes) to be inserted into a document by users (via specific UI) or programmatically. Floating means that the object is strictly positioned, absolutely or relatively within the document, regardless of the document text flow. A floating object’s anchor (seen in the picture below) specifies the paragraph with which the object is associated and indicates where the floating object is located in relation to the text.

Run Demo: Floating Objects

Manage Floating Objects in Code

Insert a Floating Object

Insert a Floating Text Box

To create a text box anchored to the given document position, use the RichEditCommands.insertFloatingTextBox client command as the following code snippet demonstrates:

javascript
myRichEdit.commands.insertFloatingTextBox.execute();

The inserted text box is at the beginning of the first paragraph on the page that contains a floating object’s anchor by default.

Insert a Floating Picture

There is no an individual dedicated client command to create floating pictures. To insert a floating picture, do the following:

  1. Insert an in-line picture using the RichEditCommands.insertPicture client command;
  2. Switch the inserted picture’s text wrapping (from the default None to any other value) by calling the RichEditCommands.changeFloatingObjectTextWrapping client command.

Example:

javascript
var settings = {
    floatingObjectTextWrapType: ASPx.FloatingObjectTextWrapSide.Both,
    floatingObjectTextWrapSide: ASPx.FloatingObjectTextWrapType.Square
};
var imageUrl = "https://demos.devexpress.com/ASPxImageAndDataNavigationDemos/Content/Images/landscapes/07.jpg";
myRichEdit.commands.insertPicture.execute(imageUrl);
myRichEdit.commands.changeFloatingObjectTextWrapping.execute(settings);

Receive a Floating Object’s Information

You can access floating objects stored in the active sub-document and their information using the SubDocument class’s API in the following notation:

clientRichEdit.document.activeSubDocument.member_name

Floating Text Boxes

MemberDescription
SubDocument.floatingTextBoxesInfoReturns information about floating text boxes in the sub-document.
SubDocument.getFloatingTextBoxInfoReturns information specific for floating text boxes about the sub-document.

Floating Pictures

MemberDescription
SubDocument.floatingPicturesInfoReturns information about floating pictures in the sub-document.

Modify the Selected Floating Object

The following client commands are available for manipulating floating objects programmatically. Call the commands in the notation given below:

clientRichEditName.commands.commandName.execute(parameter_if_any)

Text Wrapping

CommandDescription
RichEditCommands.changeFloatingObjectTextWrappingGets a command to modify a floating object’s text wrapping settings.

Position

CommandDescription
RichEditCommands.changeFloatingObjectAbsolutePositionGets a command to change a floating object’s absolute position.
RichEditCommands.changeFloatingObjectAlignmentPositionGets a command to modify a floating object’s alignment position.
RichEditCommands.changeFloatingObjectRelativePositionGets a command to modify a floating object’s relative position.

Rotate and Resize

CommandDescription
RichEditCommands.changeFloatingObjectAbsoluteSizeGets a command to change a floating object’s absolute size.
RichEditCommands.changeFloatingObjectRotationGets a command to rotate a floating object.
RichEditCommands.changeFloatingObjectLockAnchorGets a command to lock a floating object’s anchor.
RichEditCommands.changeFloatingObjectLockAspectRatioGets a command to lock a floating object’s aspect ratio.

Change the Outline

CommandDescription
RichEditCommands.changeFloatingObjectOutlineColorGets a command to modify a floating object’s outline color.
RichEditCommands.changeFloatingObjectOutlineWidthGets a command to modify a floating object’s outline width.
RichEditCommands.changeFloatingObjectFillColorGets a command to modify a floating object’s background fill color.

Text Box Settings

CommandDescription
RichEditCommands.changeTextBoxContentMarginsGets a command to modify a text box’s content margins.
RichEditCommands.changeTextBoxRelativeSizeGets a command to modify a text box’s relative size settings.
RichEditCommands.changeTextBoxResizeShapeToFitTextGets a command to resize the shape to fit the text in the text box.

Invoke the Layout Dialog

CommandDescription
RichEditCommands.openLayoutOptionsDialogGets a command to invoke the Layout dialog window to customize the settings of a floating object.

UI Interactions

Users are allowed to freely position, scale and rotate all floating objects when inserting pictures or text boxes into a document. They can also modify object characteristics using context menu items, a specific ribbon context tab, or activate the built-in Layout dialog through the context menu.

Insert a Text Box

A user can insert a text box object using the Text Box ribbon button located in the ribbon’s Insert tab, in the Text group. A selected floating text box’s contents can be formatted using the Home ribbon tab.

Ribbon Context Tab

When a floating object is selected, the Format context tab is available in the ribbon. This tab allows users to position the floating object within the document and set the shape’s fill or border color.

Handles to Rotate and Resize

Users can rotate and resize a floating object using specially designed handles as shown in the following image. When a floating object rotates, its content is also rotated.

Context Menu and the Layout Dialog

Users can also modify object characteristics using context menu items, or use the built-in Layout dialog invoked through the context menu to set more advanced options.

Limitations

  • ASPxRichEdit does not support floating tables.
  • The HTML format does not support text wrapping settings. Thus, if a user saves a document containing floating objects (images and text boxes) to an HTML file, they are saved as inline images and plain text correspondingly. See the following topic to learn more: HTML Support in Rich Text Editor.

See Also

Online Demo: Floating Objects