Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Gets a Application object that represents the Microsoft Office Excel application.
Namespace: Microsoft.Office.Tools.Excel
Assembly: Microsoft.Office.Tools.Excel.v4.0.Utilities (in Microsoft.Office.Tools.Excel.v4.0.Utilities.dll)
Syntax
'Declaration
Public ReadOnly Property Application As Application
public Application Application { get; }
Property Value
Type: Application
A Application that represents the Excel application.
Examples
The following code example uses the Application property to rearrange the application windows.
This example is for a document-level customization.
Private Sub TileApplicationWindows()
Me.Application.Windows.Arrange(Excel.XlArrangeStyle.xlArrangeStyleTiled)
End Sub
private void TileApplicationWindows()
{
this.Application.Windows.Arrange(Excel.XlArrangeStyle.xlArrangeStyleTiled);
}
.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.