XmlForm.CurrentView Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a View object that represents the current view of the form.
public:
abstract property Microsoft::Office::InfoPath::View ^ CurrentView { Microsoft::Office::InfoPath::View ^ get(); };
public abstract Microsoft.Office.InfoPath.View CurrentView { get; }
member this.CurrentView : Microsoft.Office.InfoPath.View
Public MustOverride ReadOnly Property CurrentView As View
Property Value
A View object that represents the current view.
Examples
The following code example shows how to use the ViewInfo and Window properties of the View object returned by the CurrentView property to display the name of the current view and the caption of the current window.
MessageBox.Show(this.CurrentView.ViewInfo.Name);
MessageBox.Show(this.CurrentView.Window.Caption);
MessageBox.Show(Me.CurrentView.ViewInfo.Name)
MessageBox.Show(Me.CurrentView.Window.Caption)
Remarks
Use the View object returned by the CurrentView property to work with the properties and methods of the View object as they apply to the current view.
Important: When a form is open in InfoPath, the CurrentView property returns a null reference (Nothing in Visual Basic) if it is used to access a ViewInfo object from an event handler for the Validating event.
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.
This type or member can be accessed from code running in forms opened in Microsoft InfoPath Filler or in a Web browser.