GetRange

GetRange(Start, End) → { ApiRange }

Returns a Range object that represents the part of the document contained in the specified paragraph.

Parameters:

Name Type Description
Start Number

Start character in the current element.

End Number

End character in the current element.

Returns:

Type
ApiRange

Example

Copy code
builder.CreateFile("docx");
var oDocument = Api.GetDocument();
var oParagraph = oDocument.GetElement(0);
oParagraph.AddText("This is just a sample paragraph.");
var oRange = oParagraph.GetRange(8, 11);
oRange.SetBold(true);
builder.SaveFile("docx", "GetRange.docx");
builder.CloseFile();

Resulting document