The execute method checks the command state (obtained using the getState method) before executing, and decides 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.
The parameter array's length defines the number of columns in the section. Each array element stores the settings of a corresponding column.
Usage example:
JavaScript |
var firstColumn = {
width: richEdit.unitConverter.pixelsToTwips(200),
spacing: richEdit.unitConverter.pixelsToTwips(20)
}
var secondColumn = {
width: richEdit.unitConverter.pixelsToTwips(300),
spacing: 0
}
richEdit.commands.changeSectionColumns.execute([firstColumn, secondColumn]);
|