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

RichEditCommands.changeTableRowPreferredHeight Property

Gets a command to change the selected table rows’ preferred height.

Declaration

changeTableRowPreferredHeight: ChangeTableRowPreferredHeightCommand

Property Value

Type Description
ChangeTableRowPreferredHeightCommand

A ChangeTableRowPreferredHeightCommand 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 ChangeTableRowPreferredHeightCommand class.

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 rowHeightSettings = {
    type: ASPx.TableHeightUnitType.Minimum,
    value: richEdit.unitConverter.pixelsToTwips(75)
}
richEdit.commands.changeTableRowPreferredHeight.execute(rowHeightSettings)

Applying height settings to selected table cells may lead to changing the height of the corresponding table rows.

See Also