_XDocument2.UI Property
Returns a reference to UIObject object.
Namespace: Microsoft.Office.Interop.InfoPath.SemiTrust
Assembly: Microsoft.Office.Interop.InfoPath.SemiTrust (in Microsoft.Office.Interop.InfoPath.SemiTrust.dll)
Syntax
'Declaration
ReadOnly Property UI As UIObject
Get
'Usage
Dim instance As _XDocument2
Dim value As UIObject
value = instance.UI
UIObject UI { get; }
Property Value
Type: Microsoft.Office.Interop.InfoPath.SemiTrust.UIObject
Implements
Remarks
The UI (user interface) object provides a number of methods that can be used to display custom and built-in dialog boxes.
Important
This member 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.
Examples
In the following example, the UI property of the XDocument object is used to display a simple message box using the Alert method:
thisXDocument.UI.Alert("Here is the message text.");