AddText
Adds some text to the current run.
Syntax
expression.AddText(sText);
expression
- A variable that represents a ApiRun class.
Parameters
Name | Required/Optional | Data type | Default | Description |
---|---|---|---|---|
sText | Required | string | The text which will be added to the current run. |
Returns
This method doesn't return any data.
Example
This example adds some text to the run.
let doc = Api.GetDocument();
let paragraph = doc.GetElement(0);
let run = Api.CreateRun();
run.AddText("This is just a sample text. Nothing special.");
paragraph.AddElement(run);