Show AllShow All

Type Property (Error Object)

A read-only property that returns a string value containing the type of an Error object.

expression.Type

expression    Required. An expression that returns a reference to the Error object.

Security Level

2: 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.

Remarks

There are three types or errors:

Example

In the following example, the Type property of the Error object is used to display the type of an error in a message box:

var objError;

objError = XDocument.Errors(0);
XDocument.UI.Alert("Error name: " + objError.Type);

©2003-2004 Microsoft Corporation. All rights reserved. Permission to copy, display and distribute this document is available at: http://msdn.microsoft.com/library/en-us/odcXMLRef/html/odcXMLRefLegalNotice.asp