Sdílet prostřednictvím


Window2.WindowType-Eigenschaft

Ruft einen XdWindowType-Wert ab, der den Typ des Fensters angibt, das vom WindowObject-Objekt dargestellt wird.

Namespace: Microsoft.Office.Interop.InfoPath
Assembly: Microsoft.Office.Interop.InfoPath (in microsoft.office.interop.infopath.dll)

Syntax

'Declaration
<DispIdAttribute(7)> _
ReadOnly Property WindowType As XdWindowType
'Usage
Dim instance As Window2
Dim value As XdWindowType

value = instance.WindowType
[DispIdAttribute(7)] 
XdWindowType WindowType { get; }

Hinweise

Das WindowObject-Objekt stellt die beiden Fenstertypen dar, die in der InfoPath-Anwendung verwendet werden: das Bearbeitungsfenster, das als Formularbereich verwendet wird, wenn ein Benutzer ein Formular ausfüllt, und das Entwurfsfenster, das im Entwurfsmodus verwendet wird, wenn ein Benutzer ein Formular entwirft.

Beispiel

Im folgenden Beispiel wird die WindowType-Eigenschaft des Window-Objekts verwendet, um den Typ des Fensters zu bestimmen, das momentan aktiv ist:

if (thisApplication.ActiveWindow.WindowType == 0)
 thisXDocument.UI.Alert("The active window is an editing window.");
else
 thisXDocument.UI.Alert("The active window is a designing window.");

Siehe auch

Referenz

Window2-Schnittstelle
Window2-Member
Microsoft.Office.Interop.InfoPath-Namespace