URI Property (XDocument Object)

Microsoft Office InfoPath

A read-only property that returns a string value containing the Uniform Resource Identifier (URI) of a Microsoft Office InfoPath 2003 form.

expression.URI

expression    Required. An expression that returns a reference to an XDocument 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

The URI property can be used as the name of a form when accessed through the XDocuments collection, as shown in the following example:

Application.XDocuments(XDocument.URI);

Example

In the following example, the URI property of the XDocument object is used to display a form's URI in a message box:

XDocument.UI.Alert("URI: " + XDocument.URI);