Share via


Errors.Delete method

Deletes the specified ErrorObject object from the ErrorsCollection collection.

Namespace:  Microsoft.Office.Interop.InfoPath.SemiTrust
Assembly:  Microsoft.Office.Interop.InfoPath.SemiTrust (in Microsoft.Office.Interop.InfoPath.SemiTrust.dll)

Syntax

'Declaration
Sub Delete ( _
    varNode As Object, _
    bstrConditionName As String _
)
'Usage
Dim instance As Errors
Dim varNode As Object
Dim bstrConditionName As String

instance.Delete(varNode, bstrConditionName)
void Delete(
    Object varNode,
    string bstrConditionName
)

Parameters

  • varNode
    Type: System.Object

    The XML Document Object Model (DOM) node associated with the error.

Remarks

The Delete method deletes all the Error objects in the Errors collection that are associated with the specified XML node and that have the same name. To delete all of the Error objects contained in the Errors collection, use the DeleteAll method.

Note

The Delete method will only delete errors that were created using the Add method. It cannot be used to delete errors that occur because of schema or data validation constraints, or errors that were created using the ReportError method.

Important

This member can be accessed only by forms running in the same domain as the currently open form, or by forms that have been granted cross-domain permissions.

Examples

//Delete the errors associated with a specific node
IXMLDOMDocument myDOM = thisXDocument.DOM;
IXMLDOMNode myNode = myDOM.selectSingleNode("my:myFields/my:aGroup/my:field1");
thisXDocument.Errors.Delete(myNode,thisXDocument.Errors[0].ConditionName.ToString());

See also

Reference

Errors interface

Errors members

Microsoft.Office.Interop.InfoPath.SemiTrust namespace