RichEditCommands.changePageSize Property
Gets a command to apply page size settings to sections located within a selected range.
Declaration
get changePageSize(): ChangePageSizeCommand
Property Value
Type | Description |
---|---|
ChangePageSizeCommand | An object that provides methods that execute the command and check its state. |
Remarks
Call the execute(width) 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 examples:
var width = richEdit.unitConverter.centimetersToTwips(21);
var height = richEdit.unitConverter.centimetersToTwips(29.7);
richEdit.commands.changePageSize.execute(width, height);
Refer to the following section for more information: Client Commands.
See Also