Freigeben über


Workbook.AddinInstall-Ereignis (2007 System)

Aktualisiert: November 2007

Tritt ein, wenn die Arbeitsmappe als Add-In installiert wird.

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

Syntax

Public Event AddinInstall As WorkbookEvents_AddinInstallEventHandler

Dim instance As Workbook
Dim handler As WorkbookEvents_AddinInstallEventHandler

AddHandler instance.AddinInstall, handler
public event WorkbookEvents_AddinInstallEventHandler AddinInstall

Beispiele

Im folgenden Codebeispiel wird ein Handler für das AddinInstall-Ereignis veranschaulicht. Durch den Ereignishandler wird Microsoft Office Excel maximiert, wenn die Arbeitsmappe als Add-In installiert ist.

Dieses Beispiel bezieht sich auf eine Anpassung auf Dokumentebene.

Sub ThisWorkbook_AddinInstall() Handles Me.AddinInstall
    Me.Application.WindowState = Excel.XlWindowState.xlMaximized
End Sub
private void WorkbookAddinInstall()
{
    this.AddinInstall +=
        new Excel.WorkbookEvents_AddinInstallEventHandler(
        ThisWorkbook_AddinInstall);
}

void ThisWorkbook_AddinInstall()
{
    this.Application.WindowState = Excel.XlWindowState.xlMaximized;
}

Berechtigungen

Siehe auch

Referenz

Workbook-Klasse

Workbook-Member

Microsoft.Office.Tools.Excel-Namespace