SetValidationError Method

Microsoft Word Visual Basic

Show All Show All

SetValidationError Method

Changes the validation error text displayed to a user for a specified node and forces Word to report a node as invalid.

expression.SetValidationError(Status, ErrorText, ClearedAutomatically)

expression    Required. An expression that returns one of the objects in the Applies To list.

Status    Required WdXMLValidationStatus. Specifies whether to set the validation status error text (wdXMLValidationStatusCustom) or to clear the validation status error text (wdXMLValidationStatusOK).

WdXMLValidationStatus can be one of the following WdXMLValidationStatus constants

wdXMLValidationStatusCustom
wdXMLValidationStatusOK

ErrorText    Optional Variant. The text displayed to the user. Leave blank when the Status parameter is set to wdXMLValidationStatusOK.

ClearedAutomatically    Optional Boolean. True automatically clears the error message as soon as the next validation event occurs on the specified node. False requires running the SetValidationError method with a Status parameter of wdXMLValidationStatusOK to clear the custom error text.

Remarks

To set custom error text, use the wdXMLValidationStatusCustom constant.

Example

The following example

    Dim objNode As XMLNode

Set objNode = ActiveDocument.XMLNodes(1)
objNode.SetValidationError wdXMLValidationStatusCustom, _
    "Error Text", True