XMLNode.ValidationErrorText 属性
获取一个字符串,该字符串表示对 XMLNode 控件的验证错误的说明。
命名空间: Microsoft.Office.Tools.Word
程序集: Microsoft.Office.Tools.Word(在 Microsoft.Office.Tools.Word.dll 中)
语法
声明
ReadOnly Property ValidationErrorText As XMLNode_ValidationErrorTextType
Get
XMLNode_ValidationErrorTextType ValidationErrorText { get; }
属性值
类型:Microsoft.Office.Tools.Word.XMLNode_ValidationErrorTextType
一个字符串,表示对 XMLNode 控件的验证错误的说明。
备注
ValidationErrorText 属性适合与下面的参数一起使用。
Parameter |
说明 |
---|---|
Advanced |
为 true,则显示高级版本的验证错误说明,该版本的说明由随 Microsoft Office Word 包含的 MSXML 5.0 提供;否则为 false。 |
如果使用 ValidationErrorText 属性时没有指定参数,则会从代码返回一个不适合直接使用的 XMLNode_ValidationErrorTextType 对象。
可选参数
有关可选参数的信息,请参见Office 解决方案中的可选参数。
示例
下面的代码示例设置 XMLNode 的文本值,并通过使用 Validate 方法对该节点进行验证。 然后,此示例使用 ValidationStatus 属性确定此节点是否已验证。 如果该节点尚未验证,则此示例将使用 ValidationErrorText 属性显示验证错误信息。 此示例假定当前文档包含一个名为 CustomerAddress1Node 的 XMLNode。 如果 CustomerAddress1Node 映射到具有整数数据类型的架构元素,则验证将失败。
Private Sub ValidateNode()
Me.CustomerAddress1Node.NodeText = "Nineteen Hundred"
Me.CustomerAddress1Node.Validate()
If Me.CustomerAddress1Node.ValidationStatus = _
Word.WdXMLValidationStatus.wdXMLValidationStatusOK Then
MsgBox("'" & Me.CustomerAddress1Node.BaseName & "' validates.")
Else
MsgBox("'" & Me.CustomerAddress1Node.BaseName & _
"': " & Me.CustomerAddress1Node.ValidationErrorText(False))
End If
End Sub
private void ValidateNode()
{
this.CustomerAddress1Node.NodeText = "Nineteen Hundred";
this.CustomerAddress1Node.Validate();
if (this.CustomerAddress1Node.ValidationStatus ==
Word.WdXMLValidationStatus.wdXMLValidationStatusOK)
{
MessageBox.Show("'" + this.CustomerAddress1Node.BaseName +
"' validates.");
}
else
{
MessageBox.Show("'" + this.CustomerAddress1Node.BaseName +
"': " + this.CustomerAddress1Node.ValidationErrorText[false]);
}
}
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。