Freigeben über


XmlMappedRange.Application-Eigenschaft

Ruft eine Microsoft.Office.Interop.Excel.Application ab, die die Anwendung Microsoft Office Excel darstellt.

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

Syntax

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

Eigenschaftswert

Typ: Microsoft.Office.Interop.Excel.Application
Eine Microsoft.Office.Interop.Excel.Application, die die Anwendung Excel darstellt.

Beispiele

Im folgenden Codebeispiel wird die Application-Eigenschaft verwendet, um alle offenen Anwendungsfenster nebeneinander anzuordnen.In diesem Codebeispiel wird davon ausgegangen, dass das aktuelle Arbeitsblatt einen XmlMappedRange mit dem Namen CustomerLastNameCell enthält.

Private Sub TileApplicationWindows()
    Dim application1 As Excel.Application = _
        Me.CustomerLastNameCell.Application
    application1.Windows.Arrange( _
        Excel.XlArrangeStyle.xlArrangeStyleTiled)
End Sub
private void TileApplicationWindows()
{
    Excel.Application application1 = this.CustomerLastNameCell.Application;
    application1.Windows.Arrange(Excel.XlArrangeStyle.xlArrangeStyleTiled);
}

.NET Framework-Sicherheit

Siehe auch

Referenz

XmlMappedRange Schnittstelle

Microsoft.Office.Tools.Excel-Namespace