WorkbookBase.AddinInstall Event
Occurs when the workbook is installed as an add-in.
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 Event AddinInstall As WorkbookEvents_AddinInstallEventHandler
public event WorkbookEvents_AddinInstallEventHandler AddinInstall
Examples
The following code example demonstrates a handler for the AddinInstall event. The event handler maximizes Microsoft Office Excel when the workbook is installed as an add-in.
This example is for a document-level customization.
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;
}
.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.