_XDocument2.View Property

Definition

Gets a reference to the ViewObject associated with a form.

public:
 property Microsoft::Office::Interop::InfoPath::SemiTrust::ViewObject ^ View { Microsoft::Office::Interop::InfoPath::SemiTrust::ViewObject ^ get(); };
public Microsoft.Office.Interop.InfoPath.SemiTrust.ViewObject View { get; }
member this.View : Microsoft.Office.Interop.InfoPath.SemiTrust.ViewObject
Public ReadOnly Property View As ViewObject

Property Value

Implements

Examples

In the following example, the View property of the XDocument object is used to set a reference to the View object; then, using the Name property of the ViewObject object, it displays the name of the view in a message box:

thisXDocument.UI.Alert("View name: " + thisXDocument.<span class="label">View</span>.Name);

Remarks

The ViewObject object that the View property accesses represents the view that is currently active in an InfoPath form. After you have set a reference to the ViewObject object, you can access any of its properties and methods to programmatically interact with the view.

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.

Applies to