Text
Range.Text property
获取范围的文本。
public string Text { get; }
评论
返回的字符串包括所有控制字符和特殊字符,如中所述ControlChar
。
例子
展示如何获取范围覆盖的所有节点的文本内容。
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.Write("Hello world!");
Assert.AreEqual("Hello world!", doc.Range.Text.Trim());
也可以看看
- class Range
- 命名空间 Aspose.Words
- 部件 Aspose.Words