Edit

Share via


View.Window Property

Definition

Gets a reference to a Window object associated with the view.

public:
 abstract property Microsoft::Office::InfoPath::Window ^ Window { Microsoft::Office::InfoPath::Window ^ get(); };
public abstract Microsoft.Office.InfoPath.Window Window { get; }
member this.Window : Microsoft.Office.InfoPath.Window
Public MustOverride ReadOnly Property Window As Window

Property Value

A Window associated with the current view.

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

Remarks

The Window object returned represents the currently active Microsoft InfoPath 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.

Applies to