View.Window Property (Microsoft.Office.InfoPath)
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
'Usage
Dim instance As View
Dim value As Window
value = instance.Window
public abstract Window Window { get; }
Property Value
A Window associated with the current view.
Remarks
The Window object returned represents the currently active Microsoft Office InfoPath 2007 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 Office InfoPath 2007.
Example
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