RichEditCommands.addSpacingAfterParagraph Property
Gets a command to add spacing after a paragraph.
Declaration
get addSpacingAfterParagraph(): AddSpacingAfterParagraphCommand
Property Value
Type | Description |
---|---|
AddSpacingAfterParagraphCommand | An object that provides methods that execute the command and check its state. |
Remarks
The command adds the 0.17 inches spacing after a current paragraph (the paragraph in which the cursor is located).
To execute the command, the spacing value after the current paragraph should equal 0.
Call the execute method to invoke the command. The method checks the command state (obtained via the getState method) to determine whether the action can be performed.
richEdit.commands.addSpacingAfterParagraph.execute();
Refer to the following section for more information: Client Commands.
See Also