ReplaceByElement
Replaces the current paragraph with a new element.
Syntax
expression.ReplaceByElement(oElement);
expression
- A variable that represents a ApiParagraph class.
Parameters
Name | Required/Optional | Data type | Default | Description |
---|---|---|---|---|
oElement | Required | DocumentElement | The element to replace the current paragraph with. |
Returns
boolean
Example
This example replaces the paragraph with a block level content control.
let doc = Api.GetDocument();
let paragraph = doc.GetElement(0);
paragraph.AddText("This is just a sample paragraph.");
let blockLvlSdt = Api.CreateBlockLvlSdt();
blockLvlSdt.GetContent().GetElement(0).AddText("The paragraph was replaced with the current content control.");
paragraph.ReplaceByElement(blockLvlSdt);