Freigeben über


WorkbookBase.Application-Eigenschaft

Ruft eine Microsoft.Office.Interop.Excel.Application ab, die den Ersteller des Arbeitsblatts darstellt.

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; }

Eigenschaftswert

Typ: Microsoft.Office.Interop.Excel.Application
Eine Microsoft.Office.Interop.Excel.Application, die den Ersteller des Arbeitsblatts darstellt.

Beispiele

Im folgenden Codebeispiel wird mithilfe der Application-Eigenschaft der Name der Anwendung angezeigt, in der die aktuelle Arbeitsmappe erstellt wurde.

Dieses Beispiel bezieht sich auf eine Anpassung auf Dokumentebene.

Private Sub DisplayApplicationName()
    MsgBox("The creator of this workbook is: " & _
        Me.Application.Name)
End Sub
private void DisplayApplicationName()
{
    MessageBox.Show("The creator of this workbook is: " +
        this.Application.Name);
}

.NET Framework-Sicherheit

Siehe auch

Referenz

WorkbookBase Klasse

Microsoft.Office.Tools.Excel-Namespace