GetRange
Returns a Range object that represents the part of the document contained in the specified document.
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);
oParagraph.AddText("This is just a sample text.");
oRange = oDocument.GetRange(8, 11);
oRange.SetBold(true);
builder.SaveFile("docx", "GetRange.docx");
builder.CloseFile();
Resulting document