XDocument.UI Property

InfoPath Developer Reference

Returns a reference to the Microsoft Office InfoPath 2007 UI object. Read-only

Version Information
 Version Added:  InfoPath 2003

Syntax

expression.UI

expression   An expression that returns a XDocument object.

Return Value
UI

Remarks

The UI (user interface) object provides a number of methods that can be used to display custom and built-in dialog boxes.

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 UI property of the XDocument object is used to display a simple message box using the Alert method:

JScript
  XDocument.UI.Alert("Here is the message text.");

See Also