Edit

Share via


Errors.Item[Int32] Property

Definition

Gets a reference to the specified ErrorObject object from the collection.

public:
 property Microsoft::Office::Interop::InfoPath::ErrorObject ^ default[int] { Microsoft::Office::Interop::InfoPath::ErrorObject ^ get(int index); };
public Microsoft.Office.Interop.InfoPath.ErrorObject this[int index] { get; }
member this.Item(int) : Microsoft.Office.Interop.InfoPath.ErrorObject
Default Public ReadOnly Property Item(index As Integer) As ErrorObject

Parameters

index
Int32

An expression that specifies the position of a member of the ErrorsCollection collection The argument must be a number from 0 to the value of the Count property minus 1.

Property Value

Examples

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

Error nextError = thisXDocument.Errors[i];

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 method returns, you can access any of its properties or methods.

Applies to