WorkbookBase.AddinInstall, événement
Se produit lorsque le classeur est installé en tant que complément.
Espace de noms : Microsoft.Office.Tools.Excel
Assembly : Microsoft.Office.Tools.Excel.v4.0.Utilities (dans Microsoft.Office.Tools.Excel.v4.0.Utilities.dll)
Syntaxe
'Déclaration
Public Event AddinInstall As WorkbookEvents_AddinInstallEventHandler
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;
}
Sécurité .NET Framework
- 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.