Text
Range.Text property
Gets the text of the range.
public string Text { get; }
Remarks
The returned string includes all control and special characters as described in ControlChar
.
Examples
Shows how to get the text contents of all the nodes that a range covers.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.Write("Hello world!");
Assert.AreEqual("Hello world!", doc.Range.Text.Trim());
See Also
- class Range
- namespace Aspose.Words
- assembly Aspose.Words