如何添加凍結窗格

Chaknith related to 如何添加凍結窗格
查克尼思·賓
2023年3月14日
已更新 2024年12月10日
分享:
This article was translated from English: Does it need improvement?
Translated
View the article in English

介紹

在大型資料表中,查看50 行以上或在'Z' 欄之外的欄位數據時,保持對應的標題在視野中可能具有挑戰性。 凍結窗格功能提供了一個巧妙的解決方案來應對這個問題。


開始使用IronXL

立即在您的專案中使用IronXL,並享受免費試用。

第一步:
green arrow pointer


添加凍結窗格示例

凍結窗格是一個選項,用於鎖定行和列,使它們在滾動時保持可見。 這是一個非常實用的功能,可以在快速比對信息時保持標題列或行固定。

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")
$vbLabelText   $csharpLabel

演示

凍結窗格操作

移除凍結窗格

使用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()
$vbLabelText   $csharpLabel

進階凍結窗格範例

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")
$vbLabelText   $csharpLabel

演示

進階凍結窗格示範
Chaknith related to 演示
軟體工程師
Chaknith 是開發者界的夏洛克福爾摩斯。他第一次意識到自己可能有個軟體工程的未來,是在他為了娛樂而參加程式挑戰的時候。他的重點是 IronXL 和 IronBarcode,但他也引以為豪的是,他幫助客戶解決所有產品的問題。Chaknith 利用他與客戶直接對話中獲得的知識,以進一步改進產品。他的實際反饋超越了 Jira 工單,並支持產品開發、文件撰寫和行銷,以提升客戶的整體體驗。不在公司時,他通常在學習機器學習、寫程式和徒步旅行。