XDocument.View Property

InfoPath Developer Reference

A read-only property that returns a reference to the View object associated with a Microsoft Office InfoPath 2007 form. Read-only

Version Information
 Version Added:  InfoPath 2003

Syntax

expression.View

expression   An expression that returns a XDocument object.

Return Value
View

Remarks

The View 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 View object, you can access any of its properties and methods to programmatically interact with the view.

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 View property of the XDocument object is used to set a reference to the View object; then, using the Name property of the View object, it displays the name of the view in a message box:

JScript
  var objView;

objView = XDocument.View; XDocument.UI.Alert("View name: " + objView.Name);

See Also