XMLNode.Text 属性
获取或设置 XMLNode 控件的无格式纯文本。
命名空间: Microsoft.Office.Tools.Word
程序集: Microsoft.Office.Tools.Word(在 Microsoft.Office.Tools.Word.dll 中)
语法
声明
Property Text As String
string Text { get; set; }
属性值
类型:System.String
XMLNode 控件的无格式纯文本。
备注
设置此属性会替换 XMLNode 内的所有文本,包括所有子节点。
此属性在设计时为只读。 它只能在运行时设置。
示例
下面的代码示例显示 XMLNode 中子节点的个数,通过使用 Text 属性替换 XMLNode 内的文本,然后再次显示子节点的个数。 在设置 Text 属性之后,子节点的个数为零。 此示例假定当前文档包含一个名为 CustomerNode 的 XMLNode。
Private Sub SetTextInParentNode()
MsgBox("'" & Me.CustomerNode.BaseName & "' has " & _
Me.CustomerNode.ChildNodes.Count & " child nodes.")
Me.CustomerNode.Text = "Jones"
MsgBox("'" & Me.CustomerNode.BaseName & "' now has " _
& Me.CustomerNode.ChildNodes.Count & " child nodes.")
End Sub
private void SetTextInParentNode()
{
MessageBox.Show("'" + this.CustomerNode.BaseName + "' has " +
this.CustomerNode.ChildNodes.Count + " child nodes.");
this.CustomerNode.Text = "Jones";
MessageBox.Show("'" + this.CustomerNode.BaseName + "' now has " +
this.CustomerNode.ChildNodes.Count + " child nodes.");
}
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。