Back to Devexpress

RichEditCommands.changeTableColumnPreferredWidth Property

aspnet-js-richeditcommands-772f8c5e.md

latest1.6 KB
Original Source

RichEditCommands.changeTableColumnPreferredWidth Property

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

Declaration

ts
get changeTableColumnPreferredWidth(): ChangeTableColumnPreferredWidthCommand

Property Value

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

javascript
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

RichEditCommands Class

RichEditCommands Members