Errors.Item Property

InfoPath Developer Reference

A read-only property that returns a reference to the specified Error object from the Errors collection. Read-only

Version Information
 Version Added:  InfoPath 2003

Syntax

expression.Item(Index)

expression   An expression that returns a Errors object.

Parameters

Name Required/Optional Data Type Description
Index Required Long An expression that specifies the position of a member of the Errors collection. The argument must be a number from 0 to the value of the collection's Count property minus 1.

Return Value
Error

Remarks

If the value provided for the

index

argument does not match any existing member of the collection, an error occurs.

After you have set a reference to the Error object that the Item property returns, you can access any of its properties or methods.

Security Level 0: Can be accessed without restrictions.

Example

In the following example, the Item property of the Errors collection is used to return a reference to an Error object:

JScript
  var objError;
objError = XDocument.Errors.Item(0);

Because the Item property is the default property of the Errors collection, it can also be used as follows:

JScript
  var objError;
objError = XDocument.Errors(0);

See Also