如何添加凍結窗格
介紹
在大型資料表中,查看50 行以上或在'Z' 欄之外的欄位數據時,保持對應的標題在視野中可能具有挑戰性。 凍結窗格功能提供了一個巧妙的解決方案來應對這個問題。
如何在電子表格中添加凍結窗格
要在您的試算表中添加凍結窗格,請按照以下步驟操作:

- 安裝凍結窗格所需的 C# 庫
- 使用
CreateFreezePane
與2 個參數來新增凍結窗格 - 使用
CreateFreezePane
以及4 個參數在工作表中加入凍結窗格,同時執行預捲動的操作 - 將電子表格匯出為所需的文件格式
開始使用IronXL
立即在您的專案中使用IronXL,並享受免費試用。
添加凍結窗格示例
凍結窗格是一個選項,用於鎖定行和列,使它們在滾動時保持可見。 這是一個非常實用的功能,可以在快速比對信息時保持標題列或行固定。
CreateFreezePane(int column, int row)
要添加凍結窗格,請使用CreateFreezePane
方法,指定凍結窗格開始的列和行。 指定的列和行不包括在凍結窗格中。 例如,workSheet.CreateFreezePane(1, 4)
將從列(A)和行(1-4)開始創建凍結窗格。
下面的代碼示例演示了如何從A列到B列以及第1行到第3行創建凍結窗格:
:path=/static-assets/excel/content-code-examples/how-to/add-freeze-panes-add.cs
using IronXL;
using System.Linq;
WorkBook workBook = WorkBook.Load("sample.xlsx");
WorkSheet workSheet = workBook.WorkSheets.First();
// Create freeze pane from column(A-B) and row(1-3)
workSheet.CreateFreezePane(2, 3);
workBook.SaveAs("createFreezePanes.xlsx");
Imports IronXL
Imports System.Linq
Private workBook As WorkBook = WorkBook.Load("sample.xlsx")
Private workSheet As WorkSheet = workBook.WorkSheets.First()
' Create freeze pane from column(A-B) and row(1-3)
workSheet.CreateFreezePane(2, 3)
workBook.SaveAs("createFreezePanes.xlsx")
演示

移除凍結窗格
使用RemovePane
方法快速移除您的試算表中所有現有的凍結窗格。
:path=/static-assets/excel/content-code-examples/how-to/add-freeze-panes-remove.cs
// Remove all existing freeze or split pane
workSheet.RemovePane();
' Remove all existing freeze or split pane
workSheet.RemovePane()
進階凍結窗格範例
CreateFreezePane
方法提供了一個進階選項,用於創建具有預滾動功能的凍結窗格。
CreateFreezePane(int column, int row, int subsequentColumn, int subsequentRow)
此方法允許您根據指定的列和行添加凍結窗格,如示例部分所示。 此外,它允許您對工作表進行滾動。
例如,通過使用workSheet.CreateFreezePane(5, 2, 6, 7)
,您可以創建一個凍結窗格,範圍涵蓋欄 A-E和列 1-2。 它包括一個1列和5行的滾動。 當工作表首次打開時,會顯示列 A-E, G-...和行 1-2, 8-...
[{i:(只能應用一個凍結窗格的設置。 任何額外的凍結窗格創建都將覆蓋之前的窗格。
凍結窗格不適用於 Microsoft Excel 97-2003版本 (.xls)。
:path=/static-assets/excel/content-code-examples/how-to/add-freeze-panes-advance.cs
using IronXL;
using System.Linq;
WorkBook workBook = WorkBook.Load("sample.xlsx");
WorkSheet workSheet = workBook.WorkSheets.First();
// Overwriting freeze or split pane to column(A-E) and row(1-5) as well as applying prescroll
// The column will show E,G,... and the row will show 5,8,...
workSheet.CreateFreezePane(5, 5, 6, 7);
workBook.SaveAs("createFreezePanes.xlsx");
Imports IronXL
Imports System.Linq
Private workBook As WorkBook = WorkBook.Load("sample.xlsx")
Private workSheet As WorkSheet = workBook.WorkSheets.First()
' Overwriting freeze or split pane to column(A-E) and row(1-5) as well as applying prescroll
' The column will show E,G,... and the row will show 5,8,...
workSheet.CreateFreezePane(5, 5, 6, 7)
workBook.SaveAs("createFreezePanes.xlsx")
演示
