Workbook.AddinInstall, événement (System 2007)
Mise à jour : novembre 2007
Se produit lorsque le classeur est installé en tant que complément.
Espace de noms : Microsoft.Office.Tools.Excel
Assembly : Microsoft.Office.Tools.Excel.v9.0 (dans Microsoft.Office.Tools.Excel.v9.0.dll)
Syntaxe
Public Event AddinInstall As WorkbookEvents_AddinInstallEventHandler
Dim instance As Workbook
Dim handler As WorkbookEvents_AddinInstallEventHandler
AddHandler instance.AddinInstall, handler
public event WorkbookEvents_AddinInstallEventHandler AddinInstall
Exemples
L'exemple de code suivant illustre un gestionnaire pour l'événement AddinInstall. Le gestionnaire d'événements agrandit Microsoft Office Excel lorsque le classeur est installé comme un complément.
Cet exemple illustre une personnalisation au niveau du document.
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;
}
Autorisations
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, consultez Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.