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
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.