Share via


XDocument.URI Property

InfoPath Developer Reference

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

Version Information
 Version Added:  InfoPath 2003

Syntax

expression.URI

expression   An expression that returns a XDocument object.

Return Value
String

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:

JScript
  Application.XDocuments(XDocument.URI);

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.

Example

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

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

See Also