diff --git a/content/guides/sheets/features/core/freeze.ja-JP.mdx b/content/guides/sheets/features/core/freeze.ja-JP.mdx
index 30dbed4..11e5592 100644
--- a/content/guides/sheets/features/core/freeze.ja-JP.mdx
+++ b/content/guides/sheets/features/core/freeze.ja-JP.mdx
@@ -2,10 +2,6 @@
title: ウィンドウ枠の固定(Freeze)
---
-
- 固定は現在の選択範囲の左上セルを基準点として行われます。したがって、選択セルが A1 の場合、固定は実質的に効果を持ちません。
-
-
[`IWorksheetData.freeze`](/guides/sheets/model/workbook-data) を利用してワークシートの固定状態を設定できます。インターフェース定義は以下のとおりです:
```typescript
@@ -40,11 +36,6 @@ interface IFreeze {
}
```
-最初の 1 行と 1 列のみを固定するなど、カスタム固定機能を実装したい場合は以下を参照してください:
-
-- [カスタムメニュー](/guides/recipes/tutorials/custom-plugin)
-- [SetFrozenCommand](https://github.com/dream-num/univer/blob/dev/packages/sheets/src/commands/commands/set-frozen.command.ts#L32)
-
## Facade API
`FWorksheet` クラスは行および列の固定状態を管理するための複数のメソッドを提供します。これらにより、固定の設定、取得、解除が可能です。
diff --git a/content/guides/sheets/features/core/freeze.mdx b/content/guides/sheets/features/core/freeze.mdx
index 3a0c00e..9fe0b2d 100644
--- a/content/guides/sheets/features/core/freeze.mdx
+++ b/content/guides/sheets/features/core/freeze.mdx
@@ -2,10 +2,6 @@
title: Freeze
---
-
- Freezing uses the top-left corner of the current selection as the freeze point. Therefore, if the current selection is cell A1, freezing will not be effective.
-
-
[`IWorksheetData.freeze`](/guides/sheets/model/workbook-data) can be used to configure the freeze state of a worksheet. Its interface definition is as follows:
```typescript
@@ -40,11 +36,6 @@ For example, if I want to freeze column B and row 2, I can configure it like thi
}
```
-If you want to implement custom freeze functionality, such as freezing the first row and first column, you can refer to:
-
-- [Custom Menu](/guides/recipes/tutorials/custom-plugin)
-- [SetFrozenCommand](https://github.com/dream-num/univer/blob/dev/packages/sheets/src/commands/commands/set-frozen.command.ts#L32)
-
## Facade API
The `FWorksheet` class provides several methods to manage the freeze state of rows and columns in a worksheet. These methods allow you to set, get, and cancel frozen panes.
diff --git a/content/guides/sheets/features/core/freeze.zh-CN.mdx b/content/guides/sheets/features/core/freeze.zh-CN.mdx
index 1c466a5..f17f039 100644
--- a/content/guides/sheets/features/core/freeze.zh-CN.mdx
+++ b/content/guides/sheets/features/core/freeze.zh-CN.mdx
@@ -2,10 +2,6 @@
title: 冻结
---
-
- 冻结以当前选区的左上角单元格的左上角作为冻结点。所以如果当前选区是 A1 单元格,则使用取消冻结。
-
-
[`IWorksheetData.freeze`](/guides/sheets/model/workbook-data) 可以配置工作表的冻结状态。它的接口定义如下:
```typescript
@@ -40,11 +36,6 @@ interface IFreeze {
}
```
-如果想实现自定义冻结功能,例如:冻结首行和首列,可以参考:
-
-- [自定义菜单](/guides/recipes/tutorials/custom-plugin)
-- [SetFrozenCommand](https://github.com/dream-num/univer/blob/dev/packages/sheets/src/commands/commands/set-frozen.command.ts#L32)
-
## Facade API
`FWorksheet` 类提供了几种方法来管理工作表中行和列的冻结状态。这些方法允许你设置、获取和取消冻结窗格。