Share via


XMLNodes.Application Property

Gets a Microsoft.Office.Interop.Word.Application object that represents the Microsoft Office Word application.

Namespace:  Microsoft.Office.Tools.Word
Assembly:  Microsoft.Office.Tools.Word (in Microsoft.Office.Tools.Word.dll)

Syntax

'Declaration
ReadOnly Property Application As Application
Application Application { get; }

Property Value

Type: Microsoft.Office.Interop.Word.Application
A Microsoft.Office.Interop.Word.Application object that represents the Microsoft Office Word application.

Examples

The following code example uses the Application property to minimize the active application window. This example assumes that the current document contains an XMLNodes control named InsertMemoToNodes.

Private Sub MinimizeWindow()
    Dim application1 As Word.Application = _
        Me.InsertMemoToNodes.Application

    application1.ActiveWindow.WindowState = _
        Word.WdWindowState.wdWindowStateMinimize
End Sub
private void MinimizeWindow()
{
    Word.Application application1 =
        this.InsertMemoToNodes.Application;

    application1.ActiveWindow.WindowState =
        Word.WdWindowState.wdWindowStateMinimize;
}

.NET Framework Security

See Also

Reference

XMLNodes Interface

Microsoft.Office.Tools.Word Namespace