Skip to main content
A newer version of this page is available. .
cut

RichEditCommands.changePictureScale Property

Gets a command to scale a selected in-line picture.

Declaration

readonly changePictureScale: ChangePictureScaleCommand

Property Value

Type Description
ChangePictureScaleCommand

A ChangePictureScaleCommand object that provides methods for executing the command and checking its state.

Remarks

You can invoke this command by calling the execute method.

The execute method checks the command state (obtained using the getState method) before executing, and decides whether the action can be performed. The execute and getState methods are members of the ChangePictureScaleCommand class.

The command scales an image based on its initial size values multiplied by parameters as percentages.

Usage example:

richEdit.commands.changePictureScale.execute(50, 50);
richEdit.commands.changeParagraphFormatting.execute({x: 50, y: 50});

Note that the command is executable only for in-line images.

See Also