SpreadsheetGear The Performance Spreadsheet Component Company 
IWorksheetWindowInfo Interface
See Also  Members   Example
SpreadsheetGear Namespace : IWorksheetWindowInfo Interface
Represents worksheet specific window information.

Syntax

C# 
public interface IWorksheetWindowInfo 

Example

C#Copy Code
// Demonstrates creating a workbook with frozen panes 
// using IWindowInfo.FreezePanes. 
internal static void FreezePanes() 

    // Create a workbook. 
    SpreadsheetGear.IWorkbook workbook = SpreadsheetGear.Factory.GetWorkbook(); 
    SpreadsheetGear.IWorksheet worksheet = workbook.Worksheets[0]; 
    worksheet.Name = "Freeze Panes"; 
 
    // Split after column "C" (ScrollColumn is zero based). 
    worksheet.WindowInfo.ScrollColumn = 2; 
    worksheet.WindowInfo.SplitColumns = 1; 
 
    // Split after row 2 (ScrollRow is zero based). 
    worksheet.WindowInfo.ScrollRow = 1; 
    worksheet.WindowInfo.SplitRows = 1; 
 
    // Freeze the panes. 
    worksheet.WindowInfo.FreezePanes = true; 
 
    // Select the first non-frozen cell. 
    SpreadsheetGear.IRange d3 = worksheet.Cells["D3"]; 
    d3.Select(); 
 
    // Enter some data in the frozen rows/cols. 
    worksheet.Cells["C2"].Value = "Worksheet Title"; 
    worksheet.Cells["D2"].Value = "Column Title"; 
    worksheet.Cells["C3"].Value = "Row Title"; 
 
    // Enter some data in D3, format the cell, and unlock the cell  
    // so it can bew edited after setting worksheet.ProtectContents to true. 
    d3.Value = "Edit Me"; 
    SpreadsheetGear.IFont font = d3.Font; 
    font.Name = "Tahoma"; 
    font.Size = 16.0; 
    font.Color = System.Drawing.Color.Blue; 
    d3.Locked = false; 
 
    // Autofit the columns. 
    worksheet.UsedRange.Columns.AutoFit(); 
 
    // Auto size the columns. 
    // Protect locked ce4lls. 
    worksheet.ProtectContents = true; 
 
    // Save the workbook. 
    workbook.SaveAs(@"c:\FreezePanes.xls", SpreadsheetGear.FileFormat.XLS97); 
}
Visual BasicCopy Code
' Demonstrates creating a workbook with frozen panes
' using IWindowInfo.FreezePanes.
Friend Shared Sub FreezePanes()
    ' Create a workbook.
    Dim workbook As SpreadsheetGear.IWorkbook = SpreadsheetGear.Factory.GetWorkbook()
    Dim worksheet As SpreadsheetGear.IWorksheet = workbook.Worksheets(0)
    worksheet.Name = "Freeze Panes"

    ' Split after column "C" (ScrollColumn is zero based).
    worksheet.WindowInfo.ScrollColumn = 2
    worksheet.WindowInfo.SplitColumns = 1

    ' Split after row 2 (ScrollRow is zero based).
    worksheet.WindowInfo.ScrollRow = 1
    worksheet.WindowInfo.SplitRows = 1

    ' Freeze the panes.
    worksheet.WindowInfo.FreezePanes = True

    ' Select the first non-frozen cell.
    Dim d3 As SpreadsheetGear.IRange = worksheet.Cells("D3")
    d3.Select()

    ' Enter some data in the frozen rows/cols.
    worksheet.Cells("C2").Value = "Worksheet Title"
    worksheet.Cells("D2").Value = "Column Title"
    worksheet.Cells("C3").Value = "Row Title"

    ' Enter some data in D3, format the cell, and unlock the cell
    ' so it can bew edited after setting worksheet.ProtectContents to true.
    d3.Value = "Edit Me"
    Dim font As SpreadsheetGear.IFont = d3.Font
    font.Name = "Tahoma"
    font.Size = 16.0
    font.Color = System.Drawing.Color.Blue
    d3.Locked = False

    ' Autofit the columns.
    worksheet.UsedRange.Columns.AutoFit()

    ' Auto size the columns.
    ' Protect locked ce4lls.
    worksheet.ProtectContents = True

    ' Save the workbook.
    workbook.SaveAs("c:\freezepanevb.xls", SpreadsheetGear.FileFormat.XLS97)
End Sub 'FreezePanes '

Requirements

Namespace: SpreadsheetGear

Platforms: Windows Vista, Windows XP, Windows Server 2008, Windows Server 2003, Windows 2000, Windows Me and Windows 98, including 32 bit and 64 bit editions where applicable. SpreadsheetGear for .NET 1.x requires the Microsoft .NET Framework 1.1 or .NET 2.0 (works with .NET 3.x). SpreadsheetGear for .NET 2007 requires the Microsoft .NET Framework 2.0 (works with .NET 3.x).

Assembly: SpreadsheetGear (in SpreadsheetGear.dll)

See Also