Back to Devexpress

RichEditCommands.changeFloatingObjectAbsolutePosition Property

aspnet-js-richeditcommands-d2dde2d5.md

latest1.8 KB
Original Source

RichEditCommands.changeFloatingObjectAbsolutePosition Property

Gets a command to change a floating object’s absolute position.

Declaration

ts
get changeFloatingObjectAbsolutePosition(): ChangeFloatingObjectAbsolutePositionCommand

Property Value

TypeDescription
ChangeFloatingObjectAbsolutePositionCommand

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):

javascript
var settings = {
    horizontalAbsolutePosition: rich.unitConverter.pixelsToTwips(10), 
    horizontalPositionType: ASPx.FloatingObjectHorizontalPositionType.Page,
    verticalAbsolutePosition: rich.unitConverter.pixelsToTwips(20),
    verticalPositionType: ASPx.FloatingObjectVerticalPositionType.Page,
};
rich.commands.changeFloatingObjectAbsolutePosition.execute(settings);

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

See Also

RichEditCommands Class

RichEditCommands Members