GetRange
Returns a Range object that represents the part of the document contained in the specified run.
Parameters:
Name |
Type |
Description |
Start |
Number
|
start character in current element |
End |
Number
|
end character in current element |
Returns:
- Type
-
ApiRange
Example
Copy code
builder.CreateFile("docx");
oDocument = Api.GetDocument();
oParagraph = oDocument.GetElement(0);
oRun = Api.CreateRun();
oRun.AddText("This is just a sample text.");
oParagraph.AddElement(oRun);
oRange = oRun.GetRange(0, 3);
oRange.SetBold(true);
builder.SaveFile("docx", "GetRange.docx");
builder.CloseFile();
Resulting document