GetRange

GetRange(Start, End) → { ApiRange }

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

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 oBlockLvlSdt = Api.CreateBlockLvlSdt();
oBlockLvlSdt.GetContent().GetElement(0).AddText("This is a block text content control.");
oDocument.AddElement(0, oBlockLvlSdt);
var oRange = oBlockLvlSdt.GetRange(10, 14);
oRange.SetBold(true);
builder.SaveFile("docx", "GetRange.docx");
builder.CloseFile();

Resulting document