Workbook.NewWindow Method (2007 System)

Creates a new window.

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

Syntax

'Declaration
Public Function NewWindow As Window
'Usage
Dim instance As Workbook 
Dim returnValue As Window 

returnValue = instance.NewWindow()
public Window NewWindow()
public:
Window^ NewWindow()
public function NewWindow() : Window

Return Value

Type: Window

Examples

The following code example uses the NewWindow method to create a new Excel application window that has the caption "This is a new window" and does not have gridlines.

This example is for a document-level customization.

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;
}

.NET Framework Security

See Also

Reference

Workbook Class

Workbook Members

Microsoft.Office.Tools.Excel Namespace