Partager via


WorkbookBase.NewWindow, méthode

Crée une nouvelle fenêtre.

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 Function NewWindow As Window
public Window NewWindow()

Valeur de retour

Type : Microsoft.Office.Interop.Excel.Window

Exemples

L'exemple de code suivant utilise la méthode NewWindow pour créer une nouvelle fenêtre d'application Excel qui a la légende "Ceci est une nouvelle fenêtre" et qui ne comporte pas de quadrillage.

Cet exemple illustre une personnalisation au niveau du document.

Private Sub WorkbookNewWindow()
    Dim newWindow As Excel.Window = Me.NewWindow()
    newWindow.Caption = "This is a new Window"
    newWindow.DisplayGridlines = False
End Sub
private void WorkbookNewWindow()
{
    Excel.Window newWindow = this.NewWindow();
    newWindow.Caption = "This is a new Window";
    newWindow.DisplayGridlines = false;
}

Sécurité .NET Framework

Voir aussi

Référence

WorkbookBase Classe

Microsoft.Office.Tools.Excel, espace de noms