Skip to main content
cut

RichEditCommands.changeFloatingObjectTextWrapping Property

Gets a command to modify a floating object’s text wrapping settings.

Declaration

readonly changeFloatingObjectTextWrapping: ChangeFloatingObjectTextWrappingCommand

Property Value

Type Description
ChangeFloatingObjectTextWrappingCommand

An object that provides methods that execute the command and check its state.

Remarks

Call the execute(settings) method to invoke the command. The method checks the command state (obtained via the getState method) to determine whether the action can be performed.

The command includes size parameters assigned in twips. Use the ASPxClientRichEdit.unitConverter to convert size measure units (inches, points, pixels, centimeters) to twips.

Usage example (it is implied that selection is set to a floating object):

var settings = {
    floatingObjectTextWrapType: ASPx.FloatingObjectTextWrapType.Square,
    floatingObjectTextWrapSide: ASPx.FloatingObjectTextWrapSide.Both,
    leftDistance: rich.unitConverter.pixelsToTwips(10),
    rightDistance: rich.unitConverter.pixelsToTwips(10),
    topDistance: rich.unitConverter.pixelsToTwips(10),
    bottomDistance: rich.unitConverter.pixelsToTwips(10)
};
rich.commands.changeFloatingObjectTextWrapping.execute(settings);

Refer to the following section for more information: Client Commands.

See Also