View.Window Property
Gets a reference to a Window object associated with the view.
Namespace: Microsoft.Office.InfoPath
Assembly: Microsoft.Office.InfoPath (in Microsoft.Office.InfoPath.dll)
Syntax
'Declaration
Public MustOverride ReadOnly Property Window As Window
Get
'Usage
Dim instance As View
Dim value As Window
value = instance.Window
public abstract Window Window { get; }
Property Value
Type: Microsoft.Office.InfoPath.Window
A Window associated with the current view.
Remarks
The Window object returned represents the currently active Microsoft InfoPath 2010 window. It can also be accessed through the WindowCollection object, and through the ActiveWindow property of the Application class.
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 only from code running in forms opened in Microsoft InfoPath Filler.
Examples
The following example uses the Window property of the View class to get a reference to the Window object associated with the current view.
Window myViewWindow = this.CurrentView.Window;
Dim myViewWindow As Window = Me.CurrentView.Window