Skip to main content
cut

RichEditCommands.changeTableColumnPreferredWidth Property

Gets a command to change the selected table columns’ preferred width.

Declaration

readonly changeTableColumnPreferredWidth: ChangeTableColumnPreferredWidthCommand

Property Value

Type Description
ChangeTableColumnPreferredWidthCommand

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

Remarks

Call the execute(preferredWidth) 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:

var cellWidth = {type: ASPx.TableWidthUnitType.ModelUnits, value: richEdit.unitConverter.pixelsToTwips(150)}
richEdit.commands.changeTableColumnPreferredWidth.execute(cellWidth);

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

See Also