URI Property (Solution 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 template.

expression.URI

expression    Required. An expression that returns a reference to a Solution 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 value of the URI property of the Solution object can take the form of a Uniform Resource Locator (URL) or Uniform Resource Name (URN), depending on the location from which the form was opened.

Example

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

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