diff --git a/english/aspose.cells.drawing/picture/signature_line/_index.md b/english/aspose.cells.drawing/picture/signature_line/_index.md
index 41d6490ed8..5473bc8584 100644
--- a/english/aspose.cells.drawing/picture/signature_line/_index.md
+++ b/english/aspose.cells.drawing/picture/signature_line/_index.md
@@ -12,6 +12,34 @@ is_root: false
Gets and sets the signature line
+
+### Example
+
+
+```python
+from aspose import pycore
+from aspose.cells import Workbook
+from aspose.cells.drawing import SignatureLine
+import str
+
+# Instantiating a Workbook object
+workbook = Workbook()
+worksheet = workbook.worksheets[0]
+# Adding a picture at the location of a cell whose row and column indices are 1 in the worksheet. It is "B2" cell
+imgIndex = worksheet.pictures.add(1, 1, pycore.cast(str, None))
+# Get the inserted picture object
+pic = worksheet.pictures[imgIndex]
+# Create signature line object
+s = SignatureLine()
+s.signer = "Simon"
+s.title = "Development"
+s.email = "simon@aspose.com"
+# Assign the signature line object to Picture.
+pic.signature_line = s
+# Save the excel file.
+workbook.save("result.xlsx")
+
+```
### Definition:
```python
@property
diff --git a/english/aspose.cells.drawing/shapecollection/add_signature_line/_index.md b/english/aspose.cells.drawing/shapecollection/add_signature_line/_index.md
index 689230ce2e..e81ae750b1 100644
--- a/english/aspose.cells.drawing/shapecollection/add_signature_line/_index.md
+++ b/english/aspose.cells.drawing/shapecollection/add_signature_line/_index.md
@@ -31,6 +31,25 @@ def add_signature_line(self, upper_left_row, upper_left_column, signature_line):
| upper_left_column | int | Upper left column index. |
| signature_line | [`SignatureLine`](/cells/python-net/aspose.cells.drawing/signatureline) | Represents a signature line object. |
+### Example
+
+
+```python
+from aspose.cells.drawing import SignatureLine
+
+wSignatureLine = SignatureLine()
+wSignatureLine.allow_comments = True
+wSignatureLine.email = "example@example.com"
+wSignatureLine.instructions = "Sign to confirm the excel content."
+wSignatureLine.is_line = True
+wSignatureLine.show_signed_date = True
+wSignatureLine.signer = "User"
+wSignatureLine.title = "tester"
+# wSignatureLine.SignatureLineType = SignatureType.Stamp;
+signatureLine1 = shapes.add_signature_line(0, 0, wSignatureLine)
+
+```
+
### See Also
diff --git a/english/aspose.cells.drawing/shapecollection/copy_comments_in_range/_index.md b/english/aspose.cells.drawing/shapecollection/copy_comments_in_range/_index.md
index 10a2e2ff38..d7a0f36b2f 100644
--- a/english/aspose.cells.drawing/shapecollection/copy_comments_in_range/_index.md
+++ b/english/aspose.cells.drawing/shapecollection/copy_comments_in_range/_index.md
@@ -27,6 +27,32 @@ def copy_comments_in_range(self, shapes, ca, dest_row, dest_column):
| dest_row | int | The dest range start row. |
| dest_column | int | The dest range start column. |
+### Example
+
+
+```python
+from aspose.cells import CellArea
+
+comments = workbook.worksheets[0].comments
+# Add comment to cell A1
+commentIndex = comments.add(0, 0)
+comment = comments[commentIndex]
+comment.note = "First note."
+comment.font.name = "Times New Roman"
+# Add comment to cell B2
+comments.add("B2")
+comment = comments.get("B2")
+comment.note = "Second note."
+area1 = CellArea()
+area1.start_column = 1
+area1.start_row = 1
+area1.end_column = 5
+area1.end_row = 4
+# copy
+shapes.copy_comments_in_range(shapes, area1, 5, 1)
+
+```
+
### See Also
diff --git a/english/aspose.cells.drawing/signatureline/_index.md b/english/aspose.cells.drawing/signatureline/_index.md
index 19a885deb2..62a65b1120 100644
--- a/english/aspose.cells.drawing/signatureline/_index.md
+++ b/english/aspose.cells.drawing/signatureline/_index.md
@@ -50,9 +50,9 @@ workbook = Workbook()
worksheet = workbook.worksheets[0]
# Create signature line object
s = SignatureLine()
-s.signer = "Simon Zhao"
-s.title = "Development Lead"
-s.email = "Simon.Zhao@aspose.com"
+s.signer = "Simon"
+s.title = "Development"
+s.email = "simon@aspose.com"
s.instructions = "Sign to confirm the excel content."
# Adds a Signature Line to the worksheet.
signatureLine = worksheet.shapes.add_signature_line(0, 0, s)
diff --git a/english/aspose.cells.pivot/pivotfield/_index.md b/english/aspose.cells.pivot/pivotfield/_index.md
index 3bef9f195f..6e417c892e 100644
--- a/english/aspose.cells.pivot/pivotfield/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/_index.md
@@ -23,8 +23,10 @@ The PivotField type exposes the following members:
| [range](/cells/python-net/aspose.cells.pivot/pivotfield/range) | Gets the group range of the pivot field |
| [group_settings](/cells/python-net/aspose.cells.pivot/pivotfield/group_settings) | Gets the group settings of the pivot field. |
| [is_calculated_field](/cells/python-net/aspose.cells.pivot/pivotfield/is_calculated_field) | Indicates whether the specified PivotTable field is calculated field. |
+| [is_value_fields](/cells/python-net/aspose.cells.pivot/pivotfield/is_value_fields) | Indicates whether this field represents values fields. |
| [base_index](/cells/python-net/aspose.cells.pivot/pivotfield/base_index) | Represents the PivotField index in the base PivotFields. |
| [position](/cells/python-net/aspose.cells.pivot/pivotfield/position) | Represents the index of [`PivotField`](/cells/python-net/aspose.cells.pivot/pivotfield) in the region. |
+| [region_type](/cells/python-net/aspose.cells.pivot/pivotfield/region_type) | Specifies the region of the PivotTable that this field is displayed. |
| [name](/cells/python-net/aspose.cells.pivot/pivotfield/name) | Represents the name of PivotField. |
| [display_name](/cells/python-net/aspose.cells.pivot/pivotfield/display_name) | Represents the PivotField display name. |
| [is_auto_subtotals](/cells/python-net/aspose.cells.pivot/pivotfield/is_auto_subtotals) | Indicates whether the specified field shows automatic subtotals. Default is true. |
@@ -76,11 +78,16 @@ The PivotField type exposes the following members:
| [sort_by](/cells/python-net/aspose.cells.pivot/pivotfield/sort_by/#aspose.cells.SortOrder-int-aspose.cells.pivot.PivotLineType-str) | Sorts this pivot field. |
| [hide_item](/cells/python-net/aspose.cells.pivot/pivotfield/hide_item/#int-bool) | Sets whether the specific PivotItem in a data field is hidden. |
| [hide_item](/cells/python-net/aspose.cells.pivot/pivotfield/hide_item/#str-bool) | Sets whether the specific PivotItem in a data field is hidden. |
+| [init_pivot_items](/cells/python-net/aspose.cells.pivot/pivotfield/init_pivot_items/#) | Init the pivot items of the pivot field |
+| [ungroup](/cells/python-net/aspose.cells.pivot/pivotfield/ungroup/#) | Ungroup the pivot field. |
| [get_pivot_filter_by_type](/cells/python-net/aspose.cells.pivot/pivotfield/get_pivot_filter_by_type/#aspose.cells.pivot.PivotFilterType) | Gets the pivot filter of the pivot field by type |
| [get_pivot_filters](/cells/python-net/aspose.cells.pivot/pivotfield/get_pivot_filters/#) | Gets the pivot filters of the pivot field |
| [get_filters](/cells/python-net/aspose.cells.pivot/pivotfield/get_filters/#) | Gets all pivot filters of this pivot field. |
-| [init_pivot_items](/cells/python-net/aspose.cells.pivot/pivotfield/init_pivot_items/#) | Init the pivot items of the pivot field |
-| [ungroup](/cells/python-net/aspose.cells.pivot/pivotfield/ungroup/#) | Ungroup the pivot field. |
+| [clear_filter](/cells/python-net/aspose.cells.pivot/pivotfield/clear_filter/#) | Clears filter setting on this pivot field. |
+| [filter_top10](/cells/python-net/aspose.cells.pivot/pivotfield/filter_top10/#int-aspose.cells.pivot.PivotFilterType-bool-int) | Filters by values of data pivot field. |
+| [filter_by_value](/cells/python-net/aspose.cells.pivot/pivotfield/filter_by_value/#int-aspose.cells.pivot.PivotFilterType-float-float) | Filters by values of data pivot field. |
+| [filter_by_label](/cells/python-net/aspose.cells.pivot/pivotfield/filter_by_label/#aspose.cells.pivot.PivotFilterType-str-str) | Filters by captions of row or column pivot field. |
+| [filter_by_date](/cells/python-net/aspose.cells.pivot/pivotfield/filter_by_date/#aspose.cells.pivot.PivotFilterType-DateTime-DateTime) | Filters by date setting of row or column pivot field. |
| [get_calculated_field_formula](/cells/python-net/aspose.cells.pivot/pivotfield/get_calculated_field_formula/#) | Get the formula string of the specified calculated field . |
| [get_formula](/cells/python-net/aspose.cells.pivot/pivotfield/get_formula/#) | Gets formula of the calculated field . |
| [set_subtotals](/cells/python-net/aspose.cells.pivot/pivotfield/set_subtotals/#aspose.cells.pivot.PivotFieldSubtotalType-bool) | Sets whether the specified field shows that subtotals. |
diff --git a/english/aspose.cells.pivot/pivotfield/auto_show_count/_index.md b/english/aspose.cells.pivot/pivotfield/auto_show_count/_index.md
index f082ce45a0..f5821fd027 100644
--- a/english/aspose.cells.pivot/pivotfield/auto_show_count/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/auto_show_count/_index.md
@@ -3,7 +3,7 @@ title: auto_show_count property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 210
+weight: 260
url: /aspose.cells.pivot/pivotfield/auto_show_count/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/auto_show_field/_index.md b/english/aspose.cells.pivot/pivotfield/auto_show_field/_index.md
index 8b3d8b5bae..68b1504421 100644
--- a/english/aspose.cells.pivot/pivotfield/auto_show_field/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/auto_show_field/_index.md
@@ -3,7 +3,7 @@ title: auto_show_field property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 220
+weight: 270
url: /aspose.cells.pivot/pivotfield/auto_show_field/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/auto_sort_field/_index.md b/english/aspose.cells.pivot/pivotfield/auto_sort_field/_index.md
index 44a96a6b79..a91a1f2cec 100644
--- a/english/aspose.cells.pivot/pivotfield/auto_sort_field/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/auto_sort_field/_index.md
@@ -3,7 +3,7 @@ title: auto_sort_field property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 230
+weight: 280
url: /aspose.cells.pivot/pivotfield/auto_sort_field/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/base_field_index/_index.md b/english/aspose.cells.pivot/pivotfield/base_field_index/_index.md
index a8ddb57851..763d856c13 100644
--- a/english/aspose.cells.pivot/pivotfield/base_field_index/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/base_field_index/_index.md
@@ -3,7 +3,7 @@ title: base_field_index property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 240
+weight: 290
url: /aspose.cells.pivot/pivotfield/base_field_index/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/base_index/_index.md b/english/aspose.cells.pivot/pivotfield/base_index/_index.md
index 35e6cac676..6733dab681 100644
--- a/english/aspose.cells.pivot/pivotfield/base_index/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/base_index/_index.md
@@ -3,7 +3,7 @@ title: base_index property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 250
+weight: 300
url: /aspose.cells.pivot/pivotfield/base_index/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/base_item_index/_index.md b/english/aspose.cells.pivot/pivotfield/base_item_index/_index.md
index 80b53e5c23..0f31f11248 100644
--- a/english/aspose.cells.pivot/pivotfield/base_item_index/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/base_item_index/_index.md
@@ -3,7 +3,7 @@ title: base_item_index property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 260
+weight: 310
url: /aspose.cells.pivot/pivotfield/base_item_index/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/base_item_position/_index.md b/english/aspose.cells.pivot/pivotfield/base_item_position/_index.md
index 4c79749d56..e6aade2d79 100644
--- a/english/aspose.cells.pivot/pivotfield/base_item_position/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/base_item_position/_index.md
@@ -3,7 +3,7 @@ title: base_item_position property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 270
+weight: 320
url: /aspose.cells.pivot/pivotfield/base_item_position/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/clear_filter/_index.md b/english/aspose.cells.pivot/pivotfield/clear_filter/_index.md
new file mode 100644
index 0000000000..32f3b0778c
--- /dev/null
+++ b/english/aspose.cells.pivot/pivotfield/clear_filter/_index.md
@@ -0,0 +1,28 @@
+---
+title: clear_filter method
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 30
+url: /aspose.cells.pivot/pivotfield/clear_filter/
+is_root: false
+---
+
+## clear_filter {#}
+
+Clears filter setting on this pivot field.
+
+
+
+```python
+def clear_filter(self):
+ ...
+```
+
+
+
+
+
+### See Also
+* module [`aspose.cells.pivot`](../../)
+* class [`PivotField`](/cells/python-net/aspose.cells.pivot/pivotfield)
diff --git a/english/aspose.cells.pivot/pivotfield/current_page_item/_index.md b/english/aspose.cells.pivot/pivotfield/current_page_item/_index.md
index 4bfa90b6ff..d96e8b1311 100644
--- a/english/aspose.cells.pivot/pivotfield/current_page_item/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/current_page_item/_index.md
@@ -3,7 +3,7 @@ title: current_page_item property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 280
+weight: 330
url: /aspose.cells.pivot/pivotfield/current_page_item/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/data_display_format/_index.md b/english/aspose.cells.pivot/pivotfield/data_display_format/_index.md
index f7a790b859..6061038c0d 100644
--- a/english/aspose.cells.pivot/pivotfield/data_display_format/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/data_display_format/_index.md
@@ -3,7 +3,7 @@ title: data_display_format property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 290
+weight: 340
url: /aspose.cells.pivot/pivotfield/data_display_format/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/display_name/_index.md b/english/aspose.cells.pivot/pivotfield/display_name/_index.md
index d18f31bd7a..f59f11b6e2 100644
--- a/english/aspose.cells.pivot/pivotfield/display_name/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/display_name/_index.md
@@ -3,7 +3,7 @@ title: display_name property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 300
+weight: 350
url: /aspose.cells.pivot/pivotfield/display_name/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/drag_to_column/_index.md b/english/aspose.cells.pivot/pivotfield/drag_to_column/_index.md
index 5f62ea6dec..2536d1a831 100644
--- a/english/aspose.cells.pivot/pivotfield/drag_to_column/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/drag_to_column/_index.md
@@ -3,7 +3,7 @@ title: drag_to_column property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 310
+weight: 360
url: /aspose.cells.pivot/pivotfield/drag_to_column/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/drag_to_data/_index.md b/english/aspose.cells.pivot/pivotfield/drag_to_data/_index.md
index 834db8fe16..dfeebe4755 100644
--- a/english/aspose.cells.pivot/pivotfield/drag_to_data/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/drag_to_data/_index.md
@@ -3,7 +3,7 @@ title: drag_to_data property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 320
+weight: 370
url: /aspose.cells.pivot/pivotfield/drag_to_data/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/drag_to_hide/_index.md b/english/aspose.cells.pivot/pivotfield/drag_to_hide/_index.md
index b6e4e3b224..e8d27f1b25 100644
--- a/english/aspose.cells.pivot/pivotfield/drag_to_hide/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/drag_to_hide/_index.md
@@ -3,7 +3,7 @@ title: drag_to_hide property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 330
+weight: 380
url: /aspose.cells.pivot/pivotfield/drag_to_hide/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/drag_to_page/_index.md b/english/aspose.cells.pivot/pivotfield/drag_to_page/_index.md
index a1457768fb..721e43c6a4 100644
--- a/english/aspose.cells.pivot/pivotfield/drag_to_page/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/drag_to_page/_index.md
@@ -3,7 +3,7 @@ title: drag_to_page property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 340
+weight: 390
url: /aspose.cells.pivot/pivotfield/drag_to_page/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/drag_to_row/_index.md b/english/aspose.cells.pivot/pivotfield/drag_to_row/_index.md
index 3529f61ec7..5417ce2233 100644
--- a/english/aspose.cells.pivot/pivotfield/drag_to_row/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/drag_to_row/_index.md
@@ -3,7 +3,7 @@ title: drag_to_row property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 350
+weight: 400
url: /aspose.cells.pivot/pivotfield/drag_to_row/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/filter_by_date/_index.md b/english/aspose.cells.pivot/pivotfield/filter_by_date/_index.md
new file mode 100644
index 0000000000..aefc6b6ee4
--- /dev/null
+++ b/english/aspose.cells.pivot/pivotfield/filter_by_date/_index.md
@@ -0,0 +1,33 @@
+---
+title: filter_by_date method
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 40
+url: /aspose.cells.pivot/pivotfield/filter_by_date/
+is_root: false
+---
+
+## filter_by_date {#aspose.cells.pivot.PivotFilterType-DateTime-DateTime}
+
+Filters by date setting of row or column pivot field.
+
+
+
+```python
+def filter_by_date(self, type, date_time1, date_time2):
+ ...
+```
+
+
+| Parameter | Type | Description |
+| :- | :- | :- |
+| type | [`PivotFilterType`](/cells/python-net/aspose.cells.pivot/pivotfiltertype) | The type of filtering data. |
+| date_time1 | DateTime | The date label of filter condition |
+| date_time2 | DateTime | The upper-bound date label of between filter condition |
+
+
+
+### See Also
+* module [`aspose.cells.pivot`](../../)
+* class [`PivotField`](/cells/python-net/aspose.cells.pivot/pivotfield)
diff --git a/english/aspose.cells.pivot/pivotfield/filter_by_label/_index.md b/english/aspose.cells.pivot/pivotfield/filter_by_label/_index.md
new file mode 100644
index 0000000000..36f78850de
--- /dev/null
+++ b/english/aspose.cells.pivot/pivotfield/filter_by_label/_index.md
@@ -0,0 +1,33 @@
+---
+title: filter_by_label method
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 50
+url: /aspose.cells.pivot/pivotfield/filter_by_label/
+is_root: false
+---
+
+## filter_by_label {#aspose.cells.pivot.PivotFilterType-str-str}
+
+Filters by captions of row or column pivot field.
+
+
+
+```python
+def filter_by_label(self, type, label1, label2):
+ ...
+```
+
+
+| Parameter | Type | Description |
+| :- | :- | :- |
+| type | [`PivotFilterType`](/cells/python-net/aspose.cells.pivot/pivotfiltertype) | The type of filtering data. |
+| label1 | str | The label of filter condition |
+| label2 | str | The upper-bound label of between filter condition |
+
+
+
+### See Also
+* module [`aspose.cells.pivot`](../../)
+* class [`PivotField`](/cells/python-net/aspose.cells.pivot/pivotfield)
diff --git a/english/aspose.cells.pivot/pivotfield/filter_by_value/_index.md b/english/aspose.cells.pivot/pivotfield/filter_by_value/_index.md
new file mode 100644
index 0000000000..92d781fd99
--- /dev/null
+++ b/english/aspose.cells.pivot/pivotfield/filter_by_value/_index.md
@@ -0,0 +1,34 @@
+---
+title: filter_by_value method
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 60
+url: /aspose.cells.pivot/pivotfield/filter_by_value/
+is_root: false
+---
+
+## filter_by_value {#int-aspose.cells.pivot.PivotFilterType-float-float}
+
+Filters by values of data pivot field.
+
+
+
+```python
+def filter_by_value(self, value_field_index, type, value1, value2):
+ ...
+```
+
+
+| Parameter | Type | Description |
+| :- | :- | :- |
+| value_field_index | int | The index of value field in the value region. |
+| type | [`PivotFilterType`](/cells/python-net/aspose.cells.pivot/pivotfiltertype) | The type of filtering data. |
+| value1 | float | The value of filter condition |
+| value2 | float | The upper-bound value of between filter condition |
+
+
+
+### See Also
+* module [`aspose.cells.pivot`](../../)
+* class [`PivotField`](/cells/python-net/aspose.cells.pivot/pivotfield)
diff --git a/english/aspose.cells.pivot/pivotfield/filter_top10/_index.md b/english/aspose.cells.pivot/pivotfield/filter_top10/_index.md
new file mode 100644
index 0000000000..0bc88c8d21
--- /dev/null
+++ b/english/aspose.cells.pivot/pivotfield/filter_top10/_index.md
@@ -0,0 +1,34 @@
+---
+title: filter_top10 method
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 70
+url: /aspose.cells.pivot/pivotfield/filter_top10/
+is_root: false
+---
+
+## filter_top10 {#int-aspose.cells.pivot.PivotFilterType-bool-int}
+
+Filters by values of data pivot field.
+
+
+
+```python
+def filter_top10(self, value_field_index, type, is_top, item_count):
+ ...
+```
+
+
+| Parameter | Type | Description |
+| :- | :- | :- |
+| value_field_index | int | The index of data field in the data region. |
+| type | [`PivotFilterType`](/cells/python-net/aspose.cells.pivot/pivotfiltertype) | The type of filtering data. Only can be Count,Sum and Percent. |
+| is_top | bool | Indicates whether filter from top or bottom |
+| item_count | int | The item count |
+
+
+
+### See Also
+* module [`aspose.cells.pivot`](../../)
+* class [`PivotField`](/cells/python-net/aspose.cells.pivot/pivotfield)
diff --git a/english/aspose.cells.pivot/pivotfield/function/_index.md b/english/aspose.cells.pivot/pivotfield/function/_index.md
index 79ac06707d..2b902ba9ed 100644
--- a/english/aspose.cells.pivot/pivotfield/function/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/function/_index.md
@@ -3,7 +3,7 @@ title: function property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 360
+weight: 410
url: /aspose.cells.pivot/pivotfield/function/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/get_calculated_field_formula/_index.md b/english/aspose.cells.pivot/pivotfield/get_calculated_field_formula/_index.md
index f216945c66..dc05c830c7 100644
--- a/english/aspose.cells.pivot/pivotfield/get_calculated_field_formula/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/get_calculated_field_formula/_index.md
@@ -3,7 +3,7 @@ title: get_calculated_field_formula method
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 30
+weight: 80
url: /aspose.cells.pivot/pivotfield/get_calculated_field_formula/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/get_filters/_index.md b/english/aspose.cells.pivot/pivotfield/get_filters/_index.md
index b23ab24511..35331cf568 100644
--- a/english/aspose.cells.pivot/pivotfield/get_filters/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/get_filters/_index.md
@@ -3,7 +3,7 @@ title: get_filters method
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 40
+weight: 90
url: /aspose.cells.pivot/pivotfield/get_filters/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/get_formula/_index.md b/english/aspose.cells.pivot/pivotfield/get_formula/_index.md
index 0ee9afdae8..17f93a1e26 100644
--- a/english/aspose.cells.pivot/pivotfield/get_formula/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/get_formula/_index.md
@@ -3,7 +3,7 @@ title: get_formula method
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 50
+weight: 100
url: /aspose.cells.pivot/pivotfield/get_formula/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/get_pivot_filter_by_type/_index.md b/english/aspose.cells.pivot/pivotfield/get_pivot_filter_by_type/_index.md
index 9d365f7d77..5b6fb376fa 100644
--- a/english/aspose.cells.pivot/pivotfield/get_pivot_filter_by_type/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/get_pivot_filter_by_type/_index.md
@@ -3,7 +3,7 @@ title: get_pivot_filter_by_type method
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 60
+weight: 110
url: /aspose.cells.pivot/pivotfield/get_pivot_filter_by_type/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/get_pivot_filters/_index.md b/english/aspose.cells.pivot/pivotfield/get_pivot_filters/_index.md
index 2effa5335f..4553719df0 100644
--- a/english/aspose.cells.pivot/pivotfield/get_pivot_filters/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/get_pivot_filters/_index.md
@@ -3,7 +3,7 @@ title: get_pivot_filters method
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 70
+weight: 120
url: /aspose.cells.pivot/pivotfield/get_pivot_filters/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/get_subtotals/_index.md b/english/aspose.cells.pivot/pivotfield/get_subtotals/_index.md
index 14260100fa..2d49487fa1 100644
--- a/english/aspose.cells.pivot/pivotfield/get_subtotals/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/get_subtotals/_index.md
@@ -3,7 +3,7 @@ title: get_subtotals method
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 80
+weight: 130
url: /aspose.cells.pivot/pivotfield/get_subtotals/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/group_by/_index.md b/english/aspose.cells.pivot/pivotfield/group_by/_index.md
index f26379a0c7..7175b668b5 100644
--- a/english/aspose.cells.pivot/pivotfield/group_by/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/group_by/_index.md
@@ -3,7 +3,7 @@ title: group_by method
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 90
+weight: 140
url: /aspose.cells.pivot/pivotfield/group_by/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/group_settings/_index.md b/english/aspose.cells.pivot/pivotfield/group_settings/_index.md
index 337a706359..96561061a5 100644
--- a/english/aspose.cells.pivot/pivotfield/group_settings/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/group_settings/_index.md
@@ -3,7 +3,7 @@ title: group_settings property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 370
+weight: 420
url: /aspose.cells.pivot/pivotfield/group_settings/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/hide_detail/_index.md b/english/aspose.cells.pivot/pivotfield/hide_detail/_index.md
index 02840ab73c..6493866fea 100644
--- a/english/aspose.cells.pivot/pivotfield/hide_detail/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/hide_detail/_index.md
@@ -3,7 +3,7 @@ title: hide_detail method
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 100
+weight: 150
url: /aspose.cells.pivot/pivotfield/hide_detail/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/hide_item/_index.md b/english/aspose.cells.pivot/pivotfield/hide_item/_index.md
index 4e1bd2ce17..74b6959642 100644
--- a/english/aspose.cells.pivot/pivotfield/hide_item/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/hide_item/_index.md
@@ -3,7 +3,7 @@ title: hide_item method
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 110
+weight: 160
url: /aspose.cells.pivot/pivotfield/hide_item/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/hide_item_detail/_index.md b/english/aspose.cells.pivot/pivotfield/hide_item_detail/_index.md
index 4f74e59403..d7448403ac 100644
--- a/english/aspose.cells.pivot/pivotfield/hide_item_detail/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/hide_item_detail/_index.md
@@ -3,7 +3,7 @@ title: hide_item_detail method
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 120
+weight: 170
url: /aspose.cells.pivot/pivotfield/hide_item_detail/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/init_pivot_items/_index.md b/english/aspose.cells.pivot/pivotfield/init_pivot_items/_index.md
index f748fe8e48..e16e179aa7 100644
--- a/english/aspose.cells.pivot/pivotfield/init_pivot_items/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/init_pivot_items/_index.md
@@ -3,7 +3,7 @@ title: init_pivot_items method
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 130
+weight: 180
url: /aspose.cells.pivot/pivotfield/init_pivot_items/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/insert_blank_row/_index.md b/english/aspose.cells.pivot/pivotfield/insert_blank_row/_index.md
index e170cc5568..643b62d46e 100644
--- a/english/aspose.cells.pivot/pivotfield/insert_blank_row/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/insert_blank_row/_index.md
@@ -3,7 +3,7 @@ title: insert_blank_row property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 380
+weight: 430
url: /aspose.cells.pivot/pivotfield/insert_blank_row/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/is_ascend_show/_index.md b/english/aspose.cells.pivot/pivotfield/is_ascend_show/_index.md
index 9eecf7c5ca..ef1af9dc77 100644
--- a/english/aspose.cells.pivot/pivotfield/is_ascend_show/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/is_ascend_show/_index.md
@@ -3,7 +3,7 @@ title: is_ascend_show property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 390
+weight: 440
url: /aspose.cells.pivot/pivotfield/is_ascend_show/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/is_ascend_sort/_index.md b/english/aspose.cells.pivot/pivotfield/is_ascend_sort/_index.md
index c4ac08c555..6c5ca43118 100644
--- a/english/aspose.cells.pivot/pivotfield/is_ascend_sort/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/is_ascend_sort/_index.md
@@ -3,7 +3,7 @@ title: is_ascend_sort property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 400
+weight: 450
url: /aspose.cells.pivot/pivotfield/is_ascend_sort/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/is_auto_show/_index.md b/english/aspose.cells.pivot/pivotfield/is_auto_show/_index.md
index f340675d6f..010f5dc73f 100644
--- a/english/aspose.cells.pivot/pivotfield/is_auto_show/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/is_auto_show/_index.md
@@ -3,7 +3,7 @@ title: is_auto_show property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 410
+weight: 460
url: /aspose.cells.pivot/pivotfield/is_auto_show/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/is_auto_sort/_index.md b/english/aspose.cells.pivot/pivotfield/is_auto_sort/_index.md
index 1dfd33ca39..7909f87d1b 100644
--- a/english/aspose.cells.pivot/pivotfield/is_auto_sort/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/is_auto_sort/_index.md
@@ -3,7 +3,7 @@ title: is_auto_sort property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 420
+weight: 470
url: /aspose.cells.pivot/pivotfield/is_auto_sort/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/is_auto_subtotals/_index.md b/english/aspose.cells.pivot/pivotfield/is_auto_subtotals/_index.md
index 8e8449158a..501def63d7 100644
--- a/english/aspose.cells.pivot/pivotfield/is_auto_subtotals/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/is_auto_subtotals/_index.md
@@ -3,7 +3,7 @@ title: is_auto_subtotals property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 430
+weight: 480
url: /aspose.cells.pivot/pivotfield/is_auto_subtotals/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/is_calculated_field/_index.md b/english/aspose.cells.pivot/pivotfield/is_calculated_field/_index.md
index 2b1400a2b4..dd33de8811 100644
--- a/english/aspose.cells.pivot/pivotfield/is_calculated_field/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/is_calculated_field/_index.md
@@ -3,7 +3,7 @@ title: is_calculated_field property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 440
+weight: 490
url: /aspose.cells.pivot/pivotfield/is_calculated_field/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/is_hidden_item/_index.md b/english/aspose.cells.pivot/pivotfield/is_hidden_item/_index.md
index d05600451c..13137eccca 100644
--- a/english/aspose.cells.pivot/pivotfield/is_hidden_item/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/is_hidden_item/_index.md
@@ -3,7 +3,7 @@ title: is_hidden_item method
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 140
+weight: 190
url: /aspose.cells.pivot/pivotfield/is_hidden_item/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/is_hidden_item_detail/_index.md b/english/aspose.cells.pivot/pivotfield/is_hidden_item_detail/_index.md
index 3080761a29..078be80b74 100644
--- a/english/aspose.cells.pivot/pivotfield/is_hidden_item_detail/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/is_hidden_item_detail/_index.md
@@ -3,7 +3,7 @@ title: is_hidden_item_detail method
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 150
+weight: 200
url: /aspose.cells.pivot/pivotfield/is_hidden_item_detail/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/is_include_new_items_in_filter/_index.md b/english/aspose.cells.pivot/pivotfield/is_include_new_items_in_filter/_index.md
index e3aea3af56..b583a1c139 100644
--- a/english/aspose.cells.pivot/pivotfield/is_include_new_items_in_filter/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/is_include_new_items_in_filter/_index.md
@@ -3,7 +3,7 @@ title: is_include_new_items_in_filter property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 450
+weight: 500
url: /aspose.cells.pivot/pivotfield/is_include_new_items_in_filter/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/is_insert_page_breaks_between_items/_index.md b/english/aspose.cells.pivot/pivotfield/is_insert_page_breaks_between_items/_index.md
index 1a09053be0..fe8afc9421 100644
--- a/english/aspose.cells.pivot/pivotfield/is_insert_page_breaks_between_items/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/is_insert_page_breaks_between_items/_index.md
@@ -3,7 +3,7 @@ title: is_insert_page_breaks_between_items property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 460
+weight: 510
url: /aspose.cells.pivot/pivotfield/is_insert_page_breaks_between_items/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/is_multiple_item_selection_allowed/_index.md b/english/aspose.cells.pivot/pivotfield/is_multiple_item_selection_allowed/_index.md
index 468c03a689..2862413283 100644
--- a/english/aspose.cells.pivot/pivotfield/is_multiple_item_selection_allowed/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/is_multiple_item_selection_allowed/_index.md
@@ -3,7 +3,7 @@ title: is_multiple_item_selection_allowed property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 470
+weight: 520
url: /aspose.cells.pivot/pivotfield/is_multiple_item_selection_allowed/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/is_repeat_item_labels/_index.md b/english/aspose.cells.pivot/pivotfield/is_repeat_item_labels/_index.md
index 2edcfd3b6a..f392d2154d 100644
--- a/english/aspose.cells.pivot/pivotfield/is_repeat_item_labels/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/is_repeat_item_labels/_index.md
@@ -3,7 +3,7 @@ title: is_repeat_item_labels property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 480
+weight: 530
url: /aspose.cells.pivot/pivotfield/is_repeat_item_labels/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/is_value_fields/_index.md b/english/aspose.cells.pivot/pivotfield/is_value_fields/_index.md
new file mode 100644
index 0000000000..aded28230d
--- /dev/null
+++ b/english/aspose.cells.pivot/pivotfield/is_value_fields/_index.md
@@ -0,0 +1,24 @@
+---
+title: is_value_fields property
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 540
+url: /aspose.cells.pivot/pivotfield/is_value_fields/
+is_root: false
+---
+
+## is_value_fields property
+
+
+Indicates whether this field represents values fields.
+### Definition:
+```python
+@property
+def is_value_fields(self):
+ ...
+```
+
+### See Also
+* module [`aspose.cells.pivot`](../../)
+* class [`PivotField`](/cells/python-net/aspose.cells.pivot/pivotfield)
diff --git a/english/aspose.cells.pivot/pivotfield/item_count/_index.md b/english/aspose.cells.pivot/pivotfield/item_count/_index.md
index 2d817de7e4..e9286a7fae 100644
--- a/english/aspose.cells.pivot/pivotfield/item_count/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/item_count/_index.md
@@ -3,7 +3,7 @@ title: item_count property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 490
+weight: 550
url: /aspose.cells.pivot/pivotfield/item_count/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/items/_index.md b/english/aspose.cells.pivot/pivotfield/items/_index.md
index 3145d3c7ee..ba0ba93189 100644
--- a/english/aspose.cells.pivot/pivotfield/items/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/items/_index.md
@@ -3,7 +3,7 @@ title: items property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 500
+weight: 560
url: /aspose.cells.pivot/pivotfield/items/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/name/_index.md b/english/aspose.cells.pivot/pivotfield/name/_index.md
index 607b61f410..12a6a0d2cc 100644
--- a/english/aspose.cells.pivot/pivotfield/name/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/name/_index.md
@@ -3,7 +3,7 @@ title: name property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 510
+weight: 570
url: /aspose.cells.pivot/pivotfield/name/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/non_auto_sort_default/_index.md b/english/aspose.cells.pivot/pivotfield/non_auto_sort_default/_index.md
index 644cd89dd7..44f8cac8da 100644
--- a/english/aspose.cells.pivot/pivotfield/non_auto_sort_default/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/non_auto_sort_default/_index.md
@@ -3,7 +3,7 @@ title: non_auto_sort_default property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 520
+weight: 580
url: /aspose.cells.pivot/pivotfield/non_auto_sort_default/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/number/_index.md b/english/aspose.cells.pivot/pivotfield/number/_index.md
index 5cddfa3a72..cfc8e25dcb 100644
--- a/english/aspose.cells.pivot/pivotfield/number/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/number/_index.md
@@ -3,7 +3,7 @@ title: number property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 530
+weight: 590
url: /aspose.cells.pivot/pivotfield/number/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/number_format/_index.md b/english/aspose.cells.pivot/pivotfield/number_format/_index.md
index 5f64d0859f..85a3c4a2b3 100644
--- a/english/aspose.cells.pivot/pivotfield/number_format/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/number_format/_index.md
@@ -3,7 +3,7 @@ title: number_format property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 540
+weight: 600
url: /aspose.cells.pivot/pivotfield/number_format/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/original_items/_index.md b/english/aspose.cells.pivot/pivotfield/original_items/_index.md
index de9c7218fc..9ebb313dba 100644
--- a/english/aspose.cells.pivot/pivotfield/original_items/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/original_items/_index.md
@@ -3,7 +3,7 @@ title: original_items property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 550
+weight: 610
url: /aspose.cells.pivot/pivotfield/original_items/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/pivot_items/_index.md b/english/aspose.cells.pivot/pivotfield/pivot_items/_index.md
index 88546f96ea..00f8c11bdf 100644
--- a/english/aspose.cells.pivot/pivotfield/pivot_items/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/pivot_items/_index.md
@@ -3,7 +3,7 @@ title: pivot_items property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 560
+weight: 620
url: /aspose.cells.pivot/pivotfield/pivot_items/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/position/_index.md b/english/aspose.cells.pivot/pivotfield/position/_index.md
index ba8be58736..cbd5f229c6 100644
--- a/english/aspose.cells.pivot/pivotfield/position/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/position/_index.md
@@ -3,7 +3,7 @@ title: position property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 570
+weight: 630
url: /aspose.cells.pivot/pivotfield/position/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/range/_index.md b/english/aspose.cells.pivot/pivotfield/range/_index.md
index 350b3b636e..a9f9d429a1 100644
--- a/english/aspose.cells.pivot/pivotfield/range/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/range/_index.md
@@ -3,7 +3,7 @@ title: range property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 580
+weight: 640
url: /aspose.cells.pivot/pivotfield/range/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/region_type/_index.md b/english/aspose.cells.pivot/pivotfield/region_type/_index.md
new file mode 100644
index 0000000000..f35989fb81
--- /dev/null
+++ b/english/aspose.cells.pivot/pivotfield/region_type/_index.md
@@ -0,0 +1,25 @@
+---
+title: region_type property
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 650
+url: /aspose.cells.pivot/pivotfield/region_type/
+is_root: false
+---
+
+## region_type property
+
+
+Specifies the region of the PivotTable that this field is displayed.
+### Definition:
+```python
+@property
+def region_type(self):
+ ...
+```
+
+### See Also
+* module [`aspose.cells.pivot`](../../)
+* class [`PivotField`](/cells/python-net/aspose.cells.pivot/pivotfield)
+* class [`PivotFieldType`](/cells/python-net/aspose.cells.pivot/pivotfieldtype)
diff --git a/english/aspose.cells.pivot/pivotfield/set_subtotals/_index.md b/english/aspose.cells.pivot/pivotfield/set_subtotals/_index.md
index 9fc3c3db49..898f154413 100644
--- a/english/aspose.cells.pivot/pivotfield/set_subtotals/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/set_subtotals/_index.md
@@ -3,7 +3,7 @@ title: set_subtotals method
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 160
+weight: 210
url: /aspose.cells.pivot/pivotfield/set_subtotals/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/show_all_items/_index.md b/english/aspose.cells.pivot/pivotfield/show_all_items/_index.md
index 81f1ce13ae..c6857b1c7a 100644
--- a/english/aspose.cells.pivot/pivotfield/show_all_items/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/show_all_items/_index.md
@@ -3,7 +3,7 @@ title: show_all_items property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 590
+weight: 660
url: /aspose.cells.pivot/pivotfield/show_all_items/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/show_compact/_index.md b/english/aspose.cells.pivot/pivotfield/show_compact/_index.md
index 448792d234..52b8b38461 100644
--- a/english/aspose.cells.pivot/pivotfield/show_compact/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/show_compact/_index.md
@@ -3,7 +3,7 @@ title: show_compact property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 600
+weight: 670
url: /aspose.cells.pivot/pivotfield/show_compact/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/show_in_outline_form/_index.md b/english/aspose.cells.pivot/pivotfield/show_in_outline_form/_index.md
index c36fc49553..84302fab61 100644
--- a/english/aspose.cells.pivot/pivotfield/show_in_outline_form/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/show_in_outline_form/_index.md
@@ -3,7 +3,7 @@ title: show_in_outline_form property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 610
+weight: 680
url: /aspose.cells.pivot/pivotfield/show_in_outline_form/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/show_subtotal_at_top/_index.md b/english/aspose.cells.pivot/pivotfield/show_subtotal_at_top/_index.md
index d16cbd5037..a0c8e0ca73 100644
--- a/english/aspose.cells.pivot/pivotfield/show_subtotal_at_top/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/show_subtotal_at_top/_index.md
@@ -3,7 +3,7 @@ title: show_subtotal_at_top property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 620
+weight: 690
url: /aspose.cells.pivot/pivotfield/show_subtotal_at_top/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/show_values_as/_index.md b/english/aspose.cells.pivot/pivotfield/show_values_as/_index.md
index 2275846a04..2f409327a7 100644
--- a/english/aspose.cells.pivot/pivotfield/show_values_as/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/show_values_as/_index.md
@@ -3,7 +3,7 @@ title: show_values_as method
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 170
+weight: 220
url: /aspose.cells.pivot/pivotfield/show_values_as/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/show_values_setting/_index.md b/english/aspose.cells.pivot/pivotfield/show_values_setting/_index.md
index de8812a3fd..e71fcf8248 100644
--- a/english/aspose.cells.pivot/pivotfield/show_values_setting/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/show_values_setting/_index.md
@@ -3,7 +3,7 @@ title: show_values_setting property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 630
+weight: 700
url: /aspose.cells.pivot/pivotfield/show_values_setting/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/sort_by/_index.md b/english/aspose.cells.pivot/pivotfield/sort_by/_index.md
index 3055a5fdfa..d1708505fe 100644
--- a/english/aspose.cells.pivot/pivotfield/sort_by/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/sort_by/_index.md
@@ -3,7 +3,7 @@ title: sort_by method
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 180
+weight: 230
url: /aspose.cells.pivot/pivotfield/sort_by/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/sort_setting/_index.md b/english/aspose.cells.pivot/pivotfield/sort_setting/_index.md
index d71cca78c9..4ae24c0244 100644
--- a/english/aspose.cells.pivot/pivotfield/sort_setting/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/sort_setting/_index.md
@@ -3,7 +3,7 @@ title: sort_setting property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 640
+weight: 710
url: /aspose.cells.pivot/pivotfield/sort_setting/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfield/ungroup/_index.md b/english/aspose.cells.pivot/pivotfield/ungroup/_index.md
index 02fe53261e..796690d112 100644
--- a/english/aspose.cells.pivot/pivotfield/ungroup/_index.md
+++ b/english/aspose.cells.pivot/pivotfield/ungroup/_index.md
@@ -3,7 +3,7 @@ title: ungroup method
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 190
+weight: 240
url: /aspose.cells.pivot/pivotfield/ungroup/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfilter/_index.md b/english/aspose.cells.pivot/pivotfilter/_index.md
index 9e055fc391..98e80a271e 100644
--- a/english/aspose.cells.pivot/pivotfilter/_index.md
+++ b/english/aspose.cells.pivot/pivotfilter/_index.md
@@ -1,90 +1,48 @@
----
-title: PivotFilter class
-second_title: Aspose.Cells for Python via .NET API References
-description:
-type: docs
-weight: 110
-url: /aspose.cells.pivot/pivotfilter/
-is_root: false
+---
+title: PivotFilter class
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 110
+url: /aspose.cells.pivot/pivotfilter/
+is_root: false
---
-
+
## PivotFilter class
-
+
Represents a PivotFilter in PivotFilter Collection.
-
+
The PivotFilter type exposes the following members:
-
-### Properties
-| Property | Description |
-| :- | :- |
-| [auto_filter](/cells/python-net/aspose.cells.pivot/pivotfilter/auto_filter) | Gets the autofilter of the pivot filter. |
-| [filter_type](/cells/python-net/aspose.cells.pivot/pivotfilter/filter_type) | Gets the autofilter type of the pivot filter. |
-| [field_index](/cells/python-net/aspose.cells.pivot/pivotfilter/field_index) | Gets the field index of the pivot filter. |
-| [value1](/cells/python-net/aspose.cells.pivot/pivotfilter/value1) | Gets the string value1 of the label pivot filter. |
-| [value2](/cells/python-net/aspose.cells.pivot/pivotfilter/value2) | Gets the string value2 of the label pivot filter. |
-| [measure_fld_index](/cells/python-net/aspose.cells.pivot/pivotfilter/measure_fld_index) | Gets the measure field index of the pivot filter. |
-| [member_property_field_index](/cells/python-net/aspose.cells.pivot/pivotfilter/member_property_field_index) | Gets the member property field index of the pivot filter. |
-| [name](/cells/python-net/aspose.cells.pivot/pivotfilter/name) | Gets the name of the pivot filter. |
-| [evaluation_order](/cells/python-net/aspose.cells.pivot/pivotfilter/evaluation_order) | Gets the Evaluation Order of the pivot filter. |
-
-
-
-### Example
-
-
-```python
-from aspose.cells import Workbook
-from aspose.cells.pivot import PivotFieldType, PivotFilterType, PivotTableStyleType
-
-book = Workbook()
-sheet = book.worksheets[0]
-cells = sheet.cells
-cells.get(0, 0).value = "fruit"
-cells.get(1, 0).value = "grape"
-cells.get(2, 0).value = "blueberry"
-cells.get(3, 0).value = "kiwi"
-cells.get(4, 0).value = "cherry"
-cells.get(5, 0).value = "grape"
-cells.get(6, 0).value = "blueberry"
-cells.get(7, 0).value = "kiwi"
-cells.get(8, 0).value = "cherry"
-cells.get(0, 1).value = "year"
-cells.get(1, 1).value = 2020
-cells.get(2, 1).value = 2020
-cells.get(3, 1).value = 2020
-cells.get(4, 1).value = 2020
-cells.get(5, 1).value = 2021
-cells.get(6, 1).value = 2021
-cells.get(7, 1).value = 2021
-cells.get(8, 1).value = 2021
-cells.get(0, 2).value = "amount"
-cells.get(1, 2).value = 50
-cells.get(2, 2).value = 60
-cells.get(3, 2).value = 70
-cells.get(4, 2).value = 80
-cells.get(5, 2).value = 90
-cells.get(6, 2).value = 100
-cells.get(7, 2).value = 110
-cells.get(8, 2).value = 120
-pivots = sheet.pivot_tables
-pivotIndex = pivots.add("=Sheet1!A1:C9", "A12", "TestPivotTable")
-pivot = pivots[pivotIndex]
-pivot.add_field_to_area(PivotFieldType.ROW, "fruit")
-pivot.add_field_to_area(PivotFieldType.COLUMN, "year")
-pivot.add_field_to_area(PivotFieldType.DATA, "amount")
-pivot.pivot_table_style_type = PivotTableStyleType.PIVOT_TABLE_STYLE_MEDIUM10
-# Add PivotFilter
-index = pivot.pivot_filters.add(0, PivotFilterType.COUNT)
-filter = pivot.pivot_filters[index]
-filter.auto_filter.filter_top10(0, False, False, 2)
-pivot.refresh_data()
-pivot.calculate_data()
-# do your business
-book.save("out.xlsx")
-
-```
-
-### See Also
-* module [`aspose.cells.pivot`](..)
+
+### Properties
+| Property | Description |
+| :- | :- |
+| [use_whole_day](/cells/python-net/aspose.cells.pivot/pivotfilter/use_whole_day) | Indicates whether uses whole days in its filtering criteria. |
+| [auto_filter](/cells/python-net/aspose.cells.pivot/pivotfilter/auto_filter) | Gets the autofilter of the pivot filter. |
+| [filter_type](/cells/python-net/aspose.cells.pivot/pivotfilter/filter_type) | Gets the autofilter type of the pivot filter. |
+| [field_index](/cells/python-net/aspose.cells.pivot/pivotfilter/field_index) | Gets the index of source field which this pivot filter is applied to. |
+| [filter_category](/cells/python-net/aspose.cells.pivot/pivotfilter/filter_category) | Gets the category of this filter. |
+| [value1](/cells/python-net/aspose.cells.pivot/pivotfilter/value1) | Gets the string value1 of the label pivot filter. |
+| [value2](/cells/python-net/aspose.cells.pivot/pivotfilter/value2) | Gets the string value2 of the label pivot filter. |
+| [measure_fld_index](/cells/python-net/aspose.cells.pivot/pivotfilter/measure_fld_index) | Gets the measure field index of the pivot filter. |
+| [value_field_index](/cells/python-net/aspose.cells.pivot/pivotfilter/value_field_index) | Gets the index of value field in the value region. |
+| [measure_cube_field_index](/cells/python-net/aspose.cells.pivot/pivotfilter/measure_cube_field_index) | Specifies the index of the measure cube field.
this property is used only by filters in OLAP pivots and specifies on which measure a value filter should apply. |
+| [member_property_field_index](/cells/python-net/aspose.cells.pivot/pivotfilter/member_property_field_index) | Gets the member property field index of the pivot filter. |
+| [name](/cells/python-net/aspose.cells.pivot/pivotfilter/name) | Gets the name of the pivot filter. |
+| [evaluation_order](/cells/python-net/aspose.cells.pivot/pivotfilter/evaluation_order) | Gets the Evaluation Order of the pivot filter. |
+
+
+### Methods
+| Method | Description |
+| :- | :- |
+| [get_top_10_value](/cells/python-net/aspose.cells.pivot/pivotfilter/get_top_10_value/#) | Gets top 10 setting of the filter. |
+| [get_labels](/cells/python-net/aspose.cells.pivot/pivotfilter/get_labels/#) | Gets labels of the caption filter. |
+| [get_number_values](/cells/python-net/aspose.cells.pivot/pivotfilter/get_number_values/#) | Gets values of the number filter. |
+| [get_date_time_values](/cells/python-net/aspose.cells.pivot/pivotfilter/get_date_time_values/#) | Gets values of the number filter. |
+
+
+
+### See Also
+* module [`aspose.cells.pivot`](..)
diff --git a/english/aspose.cells.pivot/pivotfilter/auto_filter/_index.md b/english/aspose.cells.pivot/pivotfilter/auto_filter/_index.md
index 45017d3da9..51bd6cf552 100644
--- a/english/aspose.cells.pivot/pivotfilter/auto_filter/_index.md
+++ b/english/aspose.cells.pivot/pivotfilter/auto_filter/_index.md
@@ -3,7 +3,7 @@ title: auto_filter property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 30
+weight: 70
url: /aspose.cells.pivot/pivotfilter/auto_filter/
is_root: false
---
@@ -12,6 +12,14 @@ is_root: false
Gets the autofilter of the pivot filter.
+
+### Remarks
+
+
+NOTE: This method is now obsolete. Instead,
+please use FilterLabel, FilterValue,FilterDate or FilterTop10 method.
+This method will be removed 12 months later since November 2024.
+Aspose apologizes for any inconvenience you may have experienced.
### Definition:
```python
@property
diff --git a/english/aspose.cells.pivot/pivotfilter/evaluation_order/_index.md b/english/aspose.cells.pivot/pivotfilter/evaluation_order/_index.md
index 3c7a42c783..979ad5b8da 100644
--- a/english/aspose.cells.pivot/pivotfilter/evaluation_order/_index.md
+++ b/english/aspose.cells.pivot/pivotfilter/evaluation_order/_index.md
@@ -3,7 +3,7 @@ title: evaluation_order property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 40
+weight: 80
url: /aspose.cells.pivot/pivotfilter/evaluation_order/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfilter/field_index/_index.md b/english/aspose.cells.pivot/pivotfilter/field_index/_index.md
index 7be931596c..6866c8f07b 100644
--- a/english/aspose.cells.pivot/pivotfilter/field_index/_index.md
+++ b/english/aspose.cells.pivot/pivotfilter/field_index/_index.md
@@ -3,7 +3,7 @@ title: field_index property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 50
+weight: 90
url: /aspose.cells.pivot/pivotfilter/field_index/
is_root: false
---
@@ -11,7 +11,7 @@ is_root: false
## field_index property
-Gets the field index of the pivot filter.
+Gets the index of source field which this pivot filter is applied to.
### Definition:
```python
@property
diff --git a/english/aspose.cells.pivot/pivotfilter/filter_category/_index.md b/english/aspose.cells.pivot/pivotfilter/filter_category/_index.md
new file mode 100644
index 0000000000..b26dd922e1
--- /dev/null
+++ b/english/aspose.cells.pivot/pivotfilter/filter_category/_index.md
@@ -0,0 +1,25 @@
+---
+title: filter_category property
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 100
+url: /aspose.cells.pivot/pivotfilter/filter_category/
+is_root: false
+---
+
+## filter_category property
+
+
+Gets the category of this filter.
+### Definition:
+```python
+@property
+def filter_category(self):
+ ...
+```
+
+### See Also
+* module [`aspose.cells.pivot`](../../)
+* class [`FilterCategory`](/cells/python-net/aspose.cells/filtercategory)
+* class [`PivotFilter`](/cells/python-net/aspose.cells.pivot/pivotfilter)
diff --git a/english/aspose.cells.pivot/pivotfilter/filter_type/_index.md b/english/aspose.cells.pivot/pivotfilter/filter_type/_index.md
index 95ad188587..850a06080d 100644
--- a/english/aspose.cells.pivot/pivotfilter/filter_type/_index.md
+++ b/english/aspose.cells.pivot/pivotfilter/filter_type/_index.md
@@ -3,7 +3,7 @@ title: filter_type property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 60
+weight: 110
url: /aspose.cells.pivot/pivotfilter/filter_type/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfilter/get_date_time_values/_index.md b/english/aspose.cells.pivot/pivotfilter/get_date_time_values/_index.md
new file mode 100644
index 0000000000..84e1af6f51
--- /dev/null
+++ b/english/aspose.cells.pivot/pivotfilter/get_date_time_values/_index.md
@@ -0,0 +1,33 @@
+---
+title: get_date_time_values method
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 20
+url: /aspose.cells.pivot/pivotfilter/get_date_time_values/
+is_root: false
+---
+
+## get_date_time_values {#}
+
+Gets values of the number filter.
+
+
+### Returns
+
+
+
+
+
+```python
+def get_date_time_values(self):
+ ...
+```
+
+
+
+
+
+### See Also
+* module [`aspose.cells.pivot`](../../)
+* class [`PivotFilter`](/cells/python-net/aspose.cells.pivot/pivotfilter)
diff --git a/english/aspose.cells.pivot/pivotfilter/get_labels/_index.md b/english/aspose.cells.pivot/pivotfilter/get_labels/_index.md
new file mode 100644
index 0000000000..2ab1142714
--- /dev/null
+++ b/english/aspose.cells.pivot/pivotfilter/get_labels/_index.md
@@ -0,0 +1,33 @@
+---
+title: get_labels method
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 30
+url: /aspose.cells.pivot/pivotfilter/get_labels/
+is_root: false
+---
+
+## get_labels {#}
+
+Gets labels of the caption filter.
+
+
+### Returns
+
+
+
+
+
+```python
+def get_labels(self):
+ ...
+```
+
+
+
+
+
+### See Also
+* module [`aspose.cells.pivot`](../../)
+* class [`PivotFilter`](/cells/python-net/aspose.cells.pivot/pivotfilter)
diff --git a/english/aspose.cells.pivot/pivotfilter/get_number_values/_index.md b/english/aspose.cells.pivot/pivotfilter/get_number_values/_index.md
new file mode 100644
index 0000000000..ada71f56c5
--- /dev/null
+++ b/english/aspose.cells.pivot/pivotfilter/get_number_values/_index.md
@@ -0,0 +1,33 @@
+---
+title: get_number_values method
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 40
+url: /aspose.cells.pivot/pivotfilter/get_number_values/
+is_root: false
+---
+
+## get_number_values {#}
+
+Gets values of the number filter.
+
+
+### Returns
+
+
+
+
+
+```python
+def get_number_values(self):
+ ...
+```
+
+
+
+
+
+### See Also
+* module [`aspose.cells.pivot`](../../)
+* class [`PivotFilter`](/cells/python-net/aspose.cells.pivot/pivotfilter)
diff --git a/english/aspose.cells.pivot/pivotfilter/get_top_10_value/_index.md b/english/aspose.cells.pivot/pivotfilter/get_top_10_value/_index.md
new file mode 100644
index 0000000000..7592858dab
--- /dev/null
+++ b/english/aspose.cells.pivot/pivotfilter/get_top_10_value/_index.md
@@ -0,0 +1,28 @@
+---
+title: get_top_10_value method
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 50
+url: /aspose.cells.pivot/pivotfilter/get_top_10_value/
+is_root: false
+---
+
+## get_top_10_value {#}
+
+Gets top 10 setting of the filter.
+
+
+
+```python
+def get_top_10_value(self):
+ ...
+```
+
+
+
+
+
+### See Also
+* module [`aspose.cells.pivot`](../../)
+* class [`PivotFilter`](/cells/python-net/aspose.cells.pivot/pivotfilter)
diff --git a/english/aspose.cells.pivot/pivotfilter/measure_cube_field_index/_index.md b/english/aspose.cells.pivot/pivotfilter/measure_cube_field_index/_index.md
new file mode 100644
index 0000000000..663ef50674
--- /dev/null
+++ b/english/aspose.cells.pivot/pivotfilter/measure_cube_field_index/_index.md
@@ -0,0 +1,25 @@
+---
+title: measure_cube_field_index property
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 120
+url: /aspose.cells.pivot/pivotfilter/measure_cube_field_index/
+is_root: false
+---
+
+## measure_cube_field_index property
+
+
+Specifies the index of the measure cube field.
+this property is used only by filters in OLAP pivots and specifies on which measure a value filter should apply.
+### Definition:
+```python
+@property
+def measure_cube_field_index(self):
+ ...
+```
+
+### See Also
+* module [`aspose.cells.pivot`](../../)
+* class [`PivotFilter`](/cells/python-net/aspose.cells.pivot/pivotfilter)
diff --git a/english/aspose.cells.pivot/pivotfilter/measure_fld_index/_index.md b/english/aspose.cells.pivot/pivotfilter/measure_fld_index/_index.md
index 2db7f82452..db25c80103 100644
--- a/english/aspose.cells.pivot/pivotfilter/measure_fld_index/_index.md
+++ b/english/aspose.cells.pivot/pivotfilter/measure_fld_index/_index.md
@@ -3,7 +3,7 @@ title: measure_fld_index property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 70
+weight: 130
url: /aspose.cells.pivot/pivotfilter/measure_fld_index/
is_root: false
---
@@ -12,6 +12,14 @@ is_root: false
Gets the measure field index of the pivot filter.
+
+### Remarks
+
+
+NOTE: This method is now obsolete. Instead,
+please use PivotFilter.ValueFieldIndex property.
+This method will be removed 12 months later since November 2024.
+Aspose apologizes for any inconvenience you may have experienced.
### Definition:
```python
@property
diff --git a/english/aspose.cells.pivot/pivotfilter/member_property_field_index/_index.md b/english/aspose.cells.pivot/pivotfilter/member_property_field_index/_index.md
index f8ce4e4acf..25047e0bbf 100644
--- a/english/aspose.cells.pivot/pivotfilter/member_property_field_index/_index.md
+++ b/english/aspose.cells.pivot/pivotfilter/member_property_field_index/_index.md
@@ -3,7 +3,7 @@ title: member_property_field_index property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 80
+weight: 140
url: /aspose.cells.pivot/pivotfilter/member_property_field_index/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfilter/name/_index.md b/english/aspose.cells.pivot/pivotfilter/name/_index.md
index 506e03a2b1..46abad782b 100644
--- a/english/aspose.cells.pivot/pivotfilter/name/_index.md
+++ b/english/aspose.cells.pivot/pivotfilter/name/_index.md
@@ -3,7 +3,7 @@ title: name property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 90
+weight: 150
url: /aspose.cells.pivot/pivotfilter/name/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfilter/use_whole_day/_index.md b/english/aspose.cells.pivot/pivotfilter/use_whole_day/_index.md
new file mode 100644
index 0000000000..d132cda9d4
--- /dev/null
+++ b/english/aspose.cells.pivot/pivotfilter/use_whole_day/_index.md
@@ -0,0 +1,27 @@
+---
+title: use_whole_day property
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 160
+url: /aspose.cells.pivot/pivotfilter/use_whole_day/
+is_root: false
+---
+
+## use_whole_day property
+
+
+Indicates whether uses whole days in its filtering criteria.
+### Definition:
+```python
+@property
+def use_whole_day(self):
+ ...
+@use_whole_day.setter
+def use_whole_day(self, value):
+ ...
+```
+
+### See Also
+* module [`aspose.cells.pivot`](../../)
+* class [`PivotFilter`](/cells/python-net/aspose.cells.pivot/pivotfilter)
diff --git a/english/aspose.cells.pivot/pivotfilter/value1/_index.md b/english/aspose.cells.pivot/pivotfilter/value1/_index.md
index afec9a35bc..73606769f5 100644
--- a/english/aspose.cells.pivot/pivotfilter/value1/_index.md
+++ b/english/aspose.cells.pivot/pivotfilter/value1/_index.md
@@ -3,7 +3,7 @@ title: value1 property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 100
+weight: 170
url: /aspose.cells.pivot/pivotfilter/value1/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfilter/value2/_index.md b/english/aspose.cells.pivot/pivotfilter/value2/_index.md
index 95bf28501e..fc07006f9c 100644
--- a/english/aspose.cells.pivot/pivotfilter/value2/_index.md
+++ b/english/aspose.cells.pivot/pivotfilter/value2/_index.md
@@ -3,7 +3,7 @@ title: value2 property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 110
+weight: 180
url: /aspose.cells.pivot/pivotfilter/value2/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfilter/value_field_index/_index.md b/english/aspose.cells.pivot/pivotfilter/value_field_index/_index.md
new file mode 100644
index 0000000000..cfe5c0dc72
--- /dev/null
+++ b/english/aspose.cells.pivot/pivotfilter/value_field_index/_index.md
@@ -0,0 +1,27 @@
+---
+title: value_field_index property
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 190
+url: /aspose.cells.pivot/pivotfilter/value_field_index/
+is_root: false
+---
+
+## value_field_index property
+
+
+Gets the index of value field in the value region.
+### Definition:
+```python
+@property
+def value_field_index(self):
+ ...
+@value_field_index.setter
+def value_field_index(self, value):
+ ...
+```
+
+### See Also
+* module [`aspose.cells.pivot`](../../)
+* class [`PivotFilter`](/cells/python-net/aspose.cells.pivot/pivotfilter)
diff --git a/english/aspose.cells.pivot/pivotfiltercollection/_index.md b/english/aspose.cells.pivot/pivotfiltercollection/_index.md
index 57275ebaf8..13f46fe5d1 100644
--- a/english/aspose.cells.pivot/pivotfiltercollection/_index.md
+++ b/english/aspose.cells.pivot/pivotfiltercollection/_index.md
@@ -33,6 +33,10 @@ The PivotFilterCollection type exposes the following members:
| [last_index_of](/cells/python-net/aspose.cells.pivot/pivotfiltercollection/last_index_of/#aspose.cells.pivot.PivotFilter-int) | Searches for the specified object and returns the zero-based index of the last occurrence within the range of elements in the array list that extends from the first element to the specified index. |
| [last_index_of](/cells/python-net/aspose.cells.pivot/pivotfiltercollection/last_index_of/#aspose.cells.pivot.PivotFilter-int-int) | Searches for the specified object and returns the zero-based index of the last occurrence within the range of elements in the array list that contains the specified number of elements and ends at the specified index. |
| [add](/cells/python-net/aspose.cells.pivot/pivotfiltercollection/add/#int-aspose.cells.pivot.PivotFilterType) | Adds a PivotFilter Object to the specific type |
+| [add_top_10_filter](/cells/python-net/aspose.cells.pivot/pivotfiltercollection/add_top_10_filter/#int-int-aspose.cells.pivot.PivotFilterType-bool-int) | Filters by values of data pivot field. |
+| [add_value_filter](/cells/python-net/aspose.cells.pivot/pivotfiltercollection/add_value_filter/#int-int-aspose.cells.pivot.PivotFilterType-float-float) | Filters by values of data pivot field. |
+| [add_label_filter](/cells/python-net/aspose.cells.pivot/pivotfiltercollection/add_label_filter/#int-aspose.cells.pivot.PivotFilterType-str-str) | Filters by captions of row or column pivot field. |
+| [add_date_filter](/cells/python-net/aspose.cells.pivot/pivotfiltercollection/add_date_filter/#int-aspose.cells.pivot.PivotFilterType-DateTime-DateTime) | Filters by date setting of row or column pivot field. |
| [clear_filter](/cells/python-net/aspose.cells.pivot/pivotfiltercollection/clear_filter/#int) | Clear PivotFilter from the specific PivotField |
| [binary_search](/cells/python-net/aspose.cells.pivot/pivotfiltercollection/binary_search/#aspose.cells.pivot.PivotFilter) | Searches the entire sorted array list for an element using the default comparer and returns the zero-based index of the element. |
diff --git a/english/aspose.cells.pivot/pivotfiltercollection/add/_index.md b/english/aspose.cells.pivot/pivotfiltercollection/add/_index.md
index 48a8c4647c..d9480ac75f 100644
--- a/english/aspose.cells.pivot/pivotfiltercollection/add/_index.md
+++ b/english/aspose.cells.pivot/pivotfiltercollection/add/_index.md
@@ -29,7 +29,12 @@ def add(self, field_index, type):
| :- | :- | :- |
| field_index | int | the PivotField index |
| type | [`PivotFilterType`](/cells/python-net/aspose.cells.pivot/pivotfiltertype) | the PivotFilter type |
+### Remarks
+NOTE: This method is now obsolete. Instead,
+please use PivotFilterCollection.AddValueFilter(),AddTop10Filter(),AddLabelFilter() and AddDateFilter() methods.
+This method will be removed 12 months later since November 2024.
+Aspose apologizes for any inconvenience you may have experienced.
### See Also
diff --git a/english/aspose.cells.pivot/pivotfiltercollection/add_date_filter/_index.md b/english/aspose.cells.pivot/pivotfiltercollection/add_date_filter/_index.md
new file mode 100644
index 0000000000..a3efc20fce
--- /dev/null
+++ b/english/aspose.cells.pivot/pivotfiltercollection/add_date_filter/_index.md
@@ -0,0 +1,34 @@
+---
+title: add_date_filter method
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 30
+url: /aspose.cells.pivot/pivotfiltercollection/add_date_filter/
+is_root: false
+---
+
+## add_date_filter {#int-aspose.cells.pivot.PivotFilterType-DateTime-DateTime}
+
+Filters by date setting of row or column pivot field.
+
+
+
+```python
+def add_date_filter(self, base_field_index, type, date_time1, date_time2):
+ ...
+```
+
+
+| Parameter | Type | Description |
+| :- | :- | :- |
+| base_field_index | int | The index of field in the source. |
+| type | [`PivotFilterType`](/cells/python-net/aspose.cells.pivot/pivotfiltertype) | The type of filtering data. |
+| date_time1 | DateTime | The date label of filter condition |
+| date_time2 | DateTime | The upper-bound date label of between filter condition |
+
+
+
+### See Also
+* module [`aspose.cells.pivot`](../../)
+* class [`PivotFilterCollection`](/cells/python-net/aspose.cells.pivot/pivotfiltercollection)
diff --git a/english/aspose.cells.pivot/pivotfiltercollection/add_label_filter/_index.md b/english/aspose.cells.pivot/pivotfiltercollection/add_label_filter/_index.md
new file mode 100644
index 0000000000..213c406c8c
--- /dev/null
+++ b/english/aspose.cells.pivot/pivotfiltercollection/add_label_filter/_index.md
@@ -0,0 +1,34 @@
+---
+title: add_label_filter method
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 40
+url: /aspose.cells.pivot/pivotfiltercollection/add_label_filter/
+is_root: false
+---
+
+## add_label_filter {#int-aspose.cells.pivot.PivotFilterType-str-str}
+
+Filters by captions of row or column pivot field.
+
+
+
+```python
+def add_label_filter(self, base_field_index, type, label1, label2):
+ ...
+```
+
+
+| Parameter | Type | Description |
+| :- | :- | :- |
+| base_field_index | int | The index of field in the source. |
+| type | [`PivotFilterType`](/cells/python-net/aspose.cells.pivot/pivotfiltertype) | The type of filtering data. |
+| label1 | str | The label of filter condition |
+| label2 | str | The upper-bound label of between filter condition |
+
+
+
+### See Also
+* module [`aspose.cells.pivot`](../../)
+* class [`PivotFilterCollection`](/cells/python-net/aspose.cells.pivot/pivotfiltercollection)
diff --git a/english/aspose.cells.pivot/pivotfiltercollection/add_top_10_filter/_index.md b/english/aspose.cells.pivot/pivotfiltercollection/add_top_10_filter/_index.md
new file mode 100644
index 0000000000..9407822446
--- /dev/null
+++ b/english/aspose.cells.pivot/pivotfiltercollection/add_top_10_filter/_index.md
@@ -0,0 +1,35 @@
+---
+title: add_top_10_filter method
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 50
+url: /aspose.cells.pivot/pivotfiltercollection/add_top_10_filter/
+is_root: false
+---
+
+## add_top_10_filter {#int-int-aspose.cells.pivot.PivotFilterType-bool-int}
+
+Filters by values of data pivot field.
+
+
+
+```python
+def add_top_10_filter(self, base_field_index, value_field_index, type, is_top, item_count):
+ ...
+```
+
+
+| Parameter | Type | Description |
+| :- | :- | :- |
+| base_field_index | int | The index of field in the source. |
+| value_field_index | int | The index of data field in the data region. |
+| type | [`PivotFilterType`](/cells/python-net/aspose.cells.pivot/pivotfiltertype) | The type of filtering data. Only can be Count,Sum and Percent. |
+| is_top | bool | Indicates whether filter from top or bottom |
+| item_count | int | The item count |
+
+
+
+### See Also
+* module [`aspose.cells.pivot`](../../)
+* class [`PivotFilterCollection`](/cells/python-net/aspose.cells.pivot/pivotfiltercollection)
diff --git a/english/aspose.cells.pivot/pivotfiltercollection/add_value_filter/_index.md b/english/aspose.cells.pivot/pivotfiltercollection/add_value_filter/_index.md
new file mode 100644
index 0000000000..22387401b1
--- /dev/null
+++ b/english/aspose.cells.pivot/pivotfiltercollection/add_value_filter/_index.md
@@ -0,0 +1,35 @@
+---
+title: add_value_filter method
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 60
+url: /aspose.cells.pivot/pivotfiltercollection/add_value_filter/
+is_root: false
+---
+
+## add_value_filter {#int-int-aspose.cells.pivot.PivotFilterType-float-float}
+
+Filters by values of data pivot field.
+
+
+
+```python
+def add_value_filter(self, base_field_index, value_field_index, type, value1, value2):
+ ...
+```
+
+
+| Parameter | Type | Description |
+| :- | :- | :- |
+| base_field_index | int | The index of field in the source. |
+| value_field_index | int | The index of value field in the value region. |
+| type | [`PivotFilterType`](/cells/python-net/aspose.cells.pivot/pivotfiltertype) | The type of filtering data. |
+| value1 | float | The value of filter condition |
+| value2 | float | The upper-bound value of between filter condition |
+
+
+
+### See Also
+* module [`aspose.cells.pivot`](../../)
+* class [`PivotFilterCollection`](/cells/python-net/aspose.cells.pivot/pivotfiltercollection)
diff --git a/english/aspose.cells.pivot/pivotfiltercollection/binary_search/_index.md b/english/aspose.cells.pivot/pivotfiltercollection/binary_search/_index.md
index 3a252f68a6..8b9afd96fb 100644
--- a/english/aspose.cells.pivot/pivotfiltercollection/binary_search/_index.md
+++ b/english/aspose.cells.pivot/pivotfiltercollection/binary_search/_index.md
@@ -3,7 +3,7 @@ title: binary_search method
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 30
+weight: 70
url: /aspose.cells.pivot/pivotfiltercollection/binary_search/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfiltercollection/capacity/_index.md b/english/aspose.cells.pivot/pivotfiltercollection/capacity/_index.md
index 0c5d0da16c..cea50a1321 100644
--- a/english/aspose.cells.pivot/pivotfiltercollection/capacity/_index.md
+++ b/english/aspose.cells.pivot/pivotfiltercollection/capacity/_index.md
@@ -3,7 +3,7 @@ title: capacity property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 90
+weight: 130
url: /aspose.cells.pivot/pivotfiltercollection/capacity/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfiltercollection/clear_filter/_index.md b/english/aspose.cells.pivot/pivotfiltercollection/clear_filter/_index.md
index d83b14ac70..98a7084e9c 100644
--- a/english/aspose.cells.pivot/pivotfiltercollection/clear_filter/_index.md
+++ b/english/aspose.cells.pivot/pivotfiltercollection/clear_filter/_index.md
@@ -3,7 +3,7 @@ title: clear_filter method
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 40
+weight: 80
url: /aspose.cells.pivot/pivotfiltercollection/clear_filter/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfiltercollection/copy_to/_index.md b/english/aspose.cells.pivot/pivotfiltercollection/copy_to/_index.md
index 368cc929c0..cd6a533d65 100644
--- a/english/aspose.cells.pivot/pivotfiltercollection/copy_to/_index.md
+++ b/english/aspose.cells.pivot/pivotfiltercollection/copy_to/_index.md
@@ -3,7 +3,7 @@ title: copy_to method
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 50
+weight: 90
url: /aspose.cells.pivot/pivotfiltercollection/copy_to/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfiltercollection/index_of/_index.md b/english/aspose.cells.pivot/pivotfiltercollection/index_of/_index.md
index 6104a215ad..7cd14f6345 100644
--- a/english/aspose.cells.pivot/pivotfiltercollection/index_of/_index.md
+++ b/english/aspose.cells.pivot/pivotfiltercollection/index_of/_index.md
@@ -3,7 +3,7 @@ title: index_of method
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 60
+weight: 100
url: /aspose.cells.pivot/pivotfiltercollection/index_of/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfiltercollection/last_index_of/_index.md b/english/aspose.cells.pivot/pivotfiltercollection/last_index_of/_index.md
index d2b98ec808..f0c5b3cc5f 100644
--- a/english/aspose.cells.pivot/pivotfiltercollection/last_index_of/_index.md
+++ b/english/aspose.cells.pivot/pivotfiltercollection/last_index_of/_index.md
@@ -3,7 +3,7 @@ title: last_index_of method
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 70
+weight: 110
url: /aspose.cells.pivot/pivotfiltercollection/last_index_of/
is_root: false
---
diff --git a/english/aspose.cells.pivot/pivotfiltertype/_index.md b/english/aspose.cells.pivot/pivotfiltertype/_index.md
index 8736eb7957..48ca65fc03 100644
--- a/english/aspose.cells.pivot/pivotfiltertype/_index.md
+++ b/english/aspose.cells.pivot/pivotfiltertype/_index.md
@@ -36,37 +36,57 @@ The PivotFilterType type exposes the following members:
| COUNT | Indicates the "count" filter. |
| DATE_BETWEEN | Indicates the "between" filter for date values. |
| DATE_EQUAL | Indicates the "equals" filter for date values. |
-| DATE_NEWER_THAN | Indicates the "newer than" filter for date values. |
-| DATE_NEWER_THAN_OR_EQUAL | Indicates the "newer than or equal to" filter for date values. |
+| DATE_NEWER_THAN | Indicates the "after" filter for date values. |
+| DATE_AFTER | Indicates the "after" filter for date values. |
+| DATE_NEWER_THAN_OR_EQUAL | Indicates the "after or equal to" filter for date values. |
+| DATE_AFTER_OR_EQUAL | Indicates the "after or equal to" filter for date values. |
| DATE_NOT_BETWEEN | Indicates the "not between" filter for date values. |
| DATE_NOT_EQUAL | Indicates the "does not equal" filter for date values. |
-| DATE_OLDER_THAN | Indicates the "older than" filter for date values. |
-| DATE_OLDER_THAN_OR_EQUAL | Indicates the "older than or equal to" filter for date values. |
+| DATE_OLDER_THAN | Indicates the "before" filter for date values. |
+| DATE_BEFORE | Indicates the "before" filter for date values. |
+| DATE_OLDER_THAN_OR_EQUAL | Indicates the "before or equal to" filter for date values. |
+| DATE_BEFORE_OR_EQUAL | Indicates the "before or equal to" filter for date values. |
| LAST_MONTH | Indicates the "last month" filter for date values. |
| LAST_QUARTER | Indicates the "last quarter" filter for date values. |
| LAST_WEEK | Indicates the "last week" filter for date values. |
| LAST_YEAR | Indicates the "last year" filter for date values. |
| M1 | Indicates the "January" filter for date values. |
+| JANUARY | Indicates the "January" filter for date values. |
| M2 | Indicates the "February" filter for date values. |
+| FEBRUARY | Indicates the "February" filter for date values. |
| M3 | Indicates the "March" filter for date values. |
+| MARCH | Indicates the "March" filter for date values. |
| M4 | Indicates the "April" filter for date values. |
+| APRIL | Indicates the "April" filter for date values. |
| M5 | Indicates the "May" filter for date values. |
+| MAY | Indicates the "May" filter for date values. |
| M6 | Indicates the "June" filter for date values. |
+| JUNE | Indicates the "June" filter for date values. |
| M7 | Indicates the "July" filter for date values. |
+| JULY | Indicates the "July" filter for date values. |
| M8 | Indicates the "August" filter for date values. |
+| AUGUST | Indicates the "August" filter for date values. |
| M9 | Indicates the "September" filter for date values. |
+| SEPTEMBER | Indicates the "September" filter for date values. |
| M10 | Indicates the "October" filter for date values. |
+| OCTOBER | Indicates the "October" filter for date values. |
| M11 | Indicates the "November" filter for date values. |
+| NOVEMBER | Indicates the "November" filter for date values. |
| M12 | Indicates the "December" filter for date values. |
+| DECEMBER | Indicates the "December" filter for date values. |
| NEXT_MONTH | Indicates the "next month" filter for date values. |
| NEXT_QUARTER | Indicates the "next quarter" for date values. |
| NEXT_WEEK | Indicates the "next week" for date values. |
| NEXT_YEAR | Indicates the "next year" filter for date values. |
| PERCENT | Indicates the "percent" filter for numeric values. |
| Q1 | Indicates the "first quarter" filter for date values. |
+| QUARTER1 | Indicates the "first quarter" filter for date values. |
| Q2 | Indicates the "second quarter" filter for date values. |
+| QUARTER2 | Indicates the "second quarter" filter for date values. |
| Q3 | Indicates the "third quarter" filter for date values. |
+| QUARTER3 | Indicates the "third quarter" filter for date values. |
| Q4 | Indicates the "fourth quarter" filter for date values. |
+| QUARTER4 | Indicates the "fourth quarter" filter for date values. |
| SUM | Indicates the "sum" filter for numeric values. |
| THIS_MONTH | Indicates the "this month" filter for date values. |
| THIS_QUARTER | Indicates the "this quarter" filter for date values. |
@@ -85,6 +105,7 @@ The PivotFilterType type exposes the following members:
| VALUE_NOT_EQUAL | Indicates the "value not equal" filter for text and numeric values. |
| YEAR_TO_DATE | Indicates the "year-to-date" filter for date values. |
| YESTERDAY | Indicates the "yesterday" filter for date values. |
+| NONE | No filter. |
diff --git a/english/aspose.cells.querytables/powerqueryformula/_index.md b/english/aspose.cells.querytables/powerqueryformula/_index.md
index 66f0a9e9ee..e10bb7165f 100644
--- a/english/aspose.cells.querytables/powerqueryformula/_index.md
+++ b/english/aspose.cells.querytables/powerqueryformula/_index.md
@@ -20,6 +20,7 @@ The PowerQueryFormula type exposes the following members:
| Property | Description |
| :- | :- |
| [type](/cells/python-net/aspose.cells.querytables/powerqueryformula/type) | Gets the type of this power query formula. |
+| [group_name](/cells/python-net/aspose.cells.querytables/powerqueryformula/group_name) | Gets the name of group which contains this power query formula. |
| [formula_definition](/cells/python-net/aspose.cells.querytables/powerqueryformula/formula_definition) | Gets the definition of the power query formula. |
| [name](/cells/python-net/aspose.cells.querytables/powerqueryformula/name) | Gets and sets the name of the power query formula. |
| [power_query_formula_items](/cells/python-net/aspose.cells.querytables/powerqueryformula/power_query_formula_items) | Gets all items of power query formula. |
diff --git a/english/aspose.cells.querytables/powerqueryformula/group_name/_index.md b/english/aspose.cells.querytables/powerqueryformula/group_name/_index.md
new file mode 100644
index 0000000000..f311567eaa
--- /dev/null
+++ b/english/aspose.cells.querytables/powerqueryformula/group_name/_index.md
@@ -0,0 +1,24 @@
+---
+title: group_name property
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 40
+url: /aspose.cells.querytables/powerqueryformula/group_name/
+is_root: false
+---
+
+## group_name property
+
+
+Gets the name of group which contains this power query formula.
+### Definition:
+```python
+@property
+def group_name(self):
+ ...
+```
+
+### See Also
+* module [`aspose.cells.querytables`](../../)
+* class [`PowerQueryFormula`](/cells/python-net/aspose.cells.querytables/powerqueryformula)
diff --git a/english/aspose.cells.querytables/powerqueryformula/name/_index.md b/english/aspose.cells.querytables/powerqueryformula/name/_index.md
index b30f30b21c..fe58387f65 100644
--- a/english/aspose.cells.querytables/powerqueryformula/name/_index.md
+++ b/english/aspose.cells.querytables/powerqueryformula/name/_index.md
@@ -3,7 +3,7 @@ title: name property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 40
+weight: 50
url: /aspose.cells.querytables/powerqueryformula/name/
is_root: false
---
diff --git a/english/aspose.cells.querytables/powerqueryformula/power_query_formula_items/_index.md b/english/aspose.cells.querytables/powerqueryformula/power_query_formula_items/_index.md
index 40f058b0b9..1a2ffc6280 100644
--- a/english/aspose.cells.querytables/powerqueryformula/power_query_formula_items/_index.md
+++ b/english/aspose.cells.querytables/powerqueryformula/power_query_formula_items/_index.md
@@ -3,7 +3,7 @@ title: power_query_formula_items property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 50
+weight: 60
url: /aspose.cells.querytables/powerqueryformula/power_query_formula_items/
is_root: false
---
diff --git a/english/aspose.cells.querytables/powerqueryformula/type/_index.md b/english/aspose.cells.querytables/powerqueryformula/type/_index.md
index 81d8fb134e..8d77f69b1e 100644
--- a/english/aspose.cells.querytables/powerqueryformula/type/_index.md
+++ b/english/aspose.cells.querytables/powerqueryformula/type/_index.md
@@ -3,7 +3,7 @@ title: type property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 60
+weight: 70
url: /aspose.cells.querytables/powerqueryformula/type/
is_root: false
---
diff --git a/english/aspose.cells.querytables/powerqueryformulafunction/_index.md b/english/aspose.cells.querytables/powerqueryformulafunction/_index.md
index dd6b44f254..b80044f3df 100644
--- a/english/aspose.cells.querytables/powerqueryformulafunction/_index.md
+++ b/english/aspose.cells.querytables/powerqueryformulafunction/_index.md
@@ -25,6 +25,7 @@ The PowerQueryFormulaFunction type exposes the following members:
| Property | Description |
| :- | :- |
| [type](/cells/python-net/aspose.cells.querytables/powerqueryformulafunction/type) | Gets the type of power query formula. |
+| [group_name](/cells/python-net/aspose.cells.querytables/powerqueryformulafunction/group_name) | Gets the name of group which contains this power query formula. |
| [formula_definition](/cells/python-net/aspose.cells.querytables/powerqueryformulafunction/formula_definition) | Gets the definition of the power query formula. |
| [name](/cells/python-net/aspose.cells.querytables/powerqueryformulafunction/name) | Gets and sets the name of the power query formula. |
| [power_query_formula_items](/cells/python-net/aspose.cells.querytables/powerqueryformulafunction/power_query_formula_items) | Gets all items of power query formula. |
diff --git a/english/aspose.cells.querytables/powerqueryformulafunction/group_name/_index.md b/english/aspose.cells.querytables/powerqueryformulafunction/group_name/_index.md
new file mode 100644
index 0000000000..9b694f76db
--- /dev/null
+++ b/english/aspose.cells.querytables/powerqueryformulafunction/group_name/_index.md
@@ -0,0 +1,24 @@
+---
+title: group_name property
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 50
+url: /aspose.cells.querytables/powerqueryformulafunction/group_name/
+is_root: false
+---
+
+## group_name property
+
+
+Gets the name of group which contains this power query formula.
+### Definition:
+```python
+@property
+def group_name(self):
+ ...
+```
+
+### See Also
+* module [`aspose.cells.querytables`](../../)
+* class [`PowerQueryFormulaFunction`](/cells/python-net/aspose.cells.querytables/powerqueryformulafunction)
diff --git a/english/aspose.cells.querytables/powerqueryformulafunction/name/_index.md b/english/aspose.cells.querytables/powerqueryformulafunction/name/_index.md
index f95e87d68c..871ca68767 100644
--- a/english/aspose.cells.querytables/powerqueryformulafunction/name/_index.md
+++ b/english/aspose.cells.querytables/powerqueryformulafunction/name/_index.md
@@ -3,7 +3,7 @@ title: name property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 50
+weight: 60
url: /aspose.cells.querytables/powerqueryformulafunction/name/
is_root: false
---
diff --git a/english/aspose.cells.querytables/powerqueryformulafunction/power_query_formula_items/_index.md b/english/aspose.cells.querytables/powerqueryformulafunction/power_query_formula_items/_index.md
index 08adc447f7..f278a5c114 100644
--- a/english/aspose.cells.querytables/powerqueryformulafunction/power_query_formula_items/_index.md
+++ b/english/aspose.cells.querytables/powerqueryformulafunction/power_query_formula_items/_index.md
@@ -3,7 +3,7 @@ title: power_query_formula_items property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 60
+weight: 70
url: /aspose.cells.querytables/powerqueryformulafunction/power_query_formula_items/
is_root: false
---
diff --git a/english/aspose.cells.querytables/powerqueryformulafunction/type/_index.md b/english/aspose.cells.querytables/powerqueryformulafunction/type/_index.md
index de884af414..0c726fca58 100644
--- a/english/aspose.cells.querytables/powerqueryformulafunction/type/_index.md
+++ b/english/aspose.cells.querytables/powerqueryformulafunction/type/_index.md
@@ -3,7 +3,7 @@ title: type property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 70
+weight: 80
url: /aspose.cells.querytables/powerqueryformulafunction/type/
is_root: false
---
diff --git a/english/aspose.cells.querytables/powerqueryformulaparameter/_index.md b/english/aspose.cells.querytables/powerqueryformulaparameter/_index.md
index 99096c7f11..48060a8156 100644
--- a/english/aspose.cells.querytables/powerqueryformulaparameter/_index.md
+++ b/english/aspose.cells.querytables/powerqueryformulaparameter/_index.md
@@ -25,6 +25,7 @@ The PowerQueryFormulaParameter type exposes the following members:
| Property | Description |
| :- | :- |
| [type](/cells/python-net/aspose.cells.querytables/powerqueryformulaparameter/type) | Gets the type of power query formula. |
+| [group_name](/cells/python-net/aspose.cells.querytables/powerqueryformulaparameter/group_name) | Gets the name of group which contains this power query formula. |
| [formula_definition](/cells/python-net/aspose.cells.querytables/powerqueryformulaparameter/formula_definition) | Gets the definition of the parameter. |
| [name](/cells/python-net/aspose.cells.querytables/powerqueryformulaparameter/name) | Gets and sets the name of the power query formula. |
| [power_query_formula_items](/cells/python-net/aspose.cells.querytables/powerqueryformulaparameter/power_query_formula_items) | Gets all items of power query formula. |
diff --git a/english/aspose.cells.querytables/powerqueryformulaparameter/group_name/_index.md b/english/aspose.cells.querytables/powerqueryformulaparameter/group_name/_index.md
new file mode 100644
index 0000000000..b1f64f1038
--- /dev/null
+++ b/english/aspose.cells.querytables/powerqueryformulaparameter/group_name/_index.md
@@ -0,0 +1,24 @@
+---
+title: group_name property
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 40
+url: /aspose.cells.querytables/powerqueryformulaparameter/group_name/
+is_root: false
+---
+
+## group_name property
+
+
+Gets the name of group which contains this power query formula.
+### Definition:
+```python
+@property
+def group_name(self):
+ ...
+```
+
+### See Also
+* module [`aspose.cells.querytables`](../../)
+* class [`PowerQueryFormulaParameter`](/cells/python-net/aspose.cells.querytables/powerqueryformulaparameter)
diff --git a/english/aspose.cells.querytables/powerqueryformulaparameter/name/_index.md b/english/aspose.cells.querytables/powerqueryformulaparameter/name/_index.md
index 71e25ed8ac..bcfc72a3f1 100644
--- a/english/aspose.cells.querytables/powerqueryformulaparameter/name/_index.md
+++ b/english/aspose.cells.querytables/powerqueryformulaparameter/name/_index.md
@@ -3,7 +3,7 @@ title: name property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 40
+weight: 50
url: /aspose.cells.querytables/powerqueryformulaparameter/name/
is_root: false
---
diff --git a/english/aspose.cells.querytables/powerqueryformulaparameter/parameter_definition/_index.md b/english/aspose.cells.querytables/powerqueryformulaparameter/parameter_definition/_index.md
index f2666ff1ce..baa08d4747 100644
--- a/english/aspose.cells.querytables/powerqueryformulaparameter/parameter_definition/_index.md
+++ b/english/aspose.cells.querytables/powerqueryformulaparameter/parameter_definition/_index.md
@@ -3,7 +3,7 @@ title: parameter_definition property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 50
+weight: 60
url: /aspose.cells.querytables/powerqueryformulaparameter/parameter_definition/
is_root: false
---
diff --git a/english/aspose.cells.querytables/powerqueryformulaparameter/power_query_formula_items/_index.md b/english/aspose.cells.querytables/powerqueryformulaparameter/power_query_formula_items/_index.md
index 0057e7ef01..387f376776 100644
--- a/english/aspose.cells.querytables/powerqueryformulaparameter/power_query_formula_items/_index.md
+++ b/english/aspose.cells.querytables/powerqueryformulaparameter/power_query_formula_items/_index.md
@@ -3,7 +3,7 @@ title: power_query_formula_items property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 60
+weight: 70
url: /aspose.cells.querytables/powerqueryformulaparameter/power_query_formula_items/
is_root: false
---
diff --git a/english/aspose.cells.querytables/powerqueryformulaparameter/type/_index.md b/english/aspose.cells.querytables/powerqueryformulaparameter/type/_index.md
index 89faa017f5..30c0d05809 100644
--- a/english/aspose.cells.querytables/powerqueryformulaparameter/type/_index.md
+++ b/english/aspose.cells.querytables/powerqueryformulaparameter/type/_index.md
@@ -3,7 +3,7 @@ title: type property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 70
+weight: 80
url: /aspose.cells.querytables/powerqueryformulaparameter/type/
is_root: false
---
diff --git a/english/aspose.cells.querytables/powerqueryformulaparameter/value/_index.md b/english/aspose.cells.querytables/powerqueryformulaparameter/value/_index.md
index 241115c7e3..0acfb0470d 100644
--- a/english/aspose.cells.querytables/powerqueryformulaparameter/value/_index.md
+++ b/english/aspose.cells.querytables/powerqueryformulaparameter/value/_index.md
@@ -3,7 +3,7 @@ title: value property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 80
+weight: 90
url: /aspose.cells.querytables/powerqueryformulaparameter/value/
is_root: false
---
diff --git a/english/aspose.cells.rendering/sheetset/active/_index.md b/english/aspose.cells.rendering/sheetset/active/_index.md
index 6367826872..ab8ab0b1d3 100644
--- a/english/aspose.cells.rendering/sheetset/active/_index.md
+++ b/english/aspose.cells.rendering/sheetset/active/_index.md
@@ -12,12 +12,6 @@ is_root: false
Gets a set with active sheet of the workbook.
-### Definition:
-```python
-@property
-def active(self):
- ...
-```
### See Also
* module [`aspose.cells.rendering`](../../)
diff --git a/english/aspose.cells.rendering/sheetset/all/_index.md b/english/aspose.cells.rendering/sheetset/all/_index.md
index 4354f9389e..317594c850 100644
--- a/english/aspose.cells.rendering/sheetset/all/_index.md
+++ b/english/aspose.cells.rendering/sheetset/all/_index.md
@@ -12,12 +12,6 @@ is_root: false
Gets a set with all sheets of the workbook in their original order.
-### Definition:
-```python
-@property
-def all(self):
- ...
-```
### See Also
* module [`aspose.cells.rendering`](../../)
diff --git a/english/aspose.cells.rendering/sheetset/visible/_index.md b/english/aspose.cells.rendering/sheetset/visible/_index.md
index 4b17fd2aa9..532c03002a 100644
--- a/english/aspose.cells.rendering/sheetset/visible/_index.md
+++ b/english/aspose.cells.rendering/sheetset/visible/_index.md
@@ -12,12 +12,6 @@ is_root: false
Gets a set with visible sheets of the workbook in their original order.
-### Definition:
-```python
-@property
-def visible(self):
- ...
-```
### See Also
* module [`aspose.cells.rendering`](../../)
diff --git a/english/aspose.cells.saving/ebooksaveoptions/_index.md b/english/aspose.cells.saving/ebooksaveoptions/_index.md
index 80fdf9f01d..d85e5b9c9a 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/_index.md
@@ -42,6 +42,7 @@ The EbookSaveOptions type exposes the following members:
| [sort_external_names](/cells/python-net/aspose.cells.saving/ebooksaveoptions/sort_external_names) | Indicates whether sorting external defined names before saving file. |
| [refresh_chart_cache](/cells/python-net/aspose.cells.saving/ebooksaveoptions/refresh_chart_cache) | Indicates whether refreshing chart cache data |
| [warning_callback](/cells/python-net/aspose.cells.saving/ebooksaveoptions/warning_callback) | Gets or sets warning callback. |
+| [check_excel_restriction](/cells/python-net/aspose.cells.saving/ebooksaveoptions/check_excel_restriction) | Whether check restriction of excel file when user modify cells related objects.
For example, excel does not allow inputting string value longer than 32K.
When you input a value longer than 32K, it will be truncated. |
| [update_smart_art](/cells/python-net/aspose.cells.saving/ebooksaveoptions/update_smart_art) | Indicates whether updating smart art setting.
The default value is false. |
| [encrypt_document_properties](/cells/python-net/aspose.cells.saving/ebooksaveoptions/encrypt_document_properties) | Indicates whether encrypt document properties when saving as .xls file.
The default value is true. |
| [ignore_invisible_shapes](/cells/python-net/aspose.cells.saving/ebooksaveoptions/ignore_invisible_shapes) | Indicate whether exporting those not visible shapes |
@@ -110,6 +111,7 @@ The EbookSaveOptions type exposes the following members:
| [encode_entity_as_code](/cells/python-net/aspose.cells.saving/ebooksaveoptions/encode_entity_as_code) | Indicates whether the html character entities are replaced with decimal code.
(e.g. " " is replaced with " ").
The default value is false. |
| [office_math_output_mode](/cells/python-net/aspose.cells.saving/ebooksaveoptions/office_math_output_mode) | Indicates how export OfficeMath objects to HTML, Default value is Image. |
| [cell_name_attribute](/cells/python-net/aspose.cells.saving/ebooksaveoptions/cell_name_attribute) | Specifies the attribute that indicates the CellName to be written.
(e.g. If the value is "id", then for cell "A1", the output will be:
).
The default value is null. |
+| [disable_css](/cells/python-net/aspose.cells.saving/ebooksaveoptions/disable_css) | Indicates whether only inline styles are applied, without relying on CSS.
The default value is false. |
diff --git a/english/aspose.cells.saving/ebooksaveoptions/check_excel_restriction/_index.md b/english/aspose.cells.saving/ebooksaveoptions/check_excel_restriction/_index.md
new file mode 100644
index 0000000000..0ced80af06
--- /dev/null
+++ b/english/aspose.cells.saving/ebooksaveoptions/check_excel_restriction/_index.md
@@ -0,0 +1,29 @@
+---
+title: check_excel_restriction property
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 110
+url: /aspose.cells.saving/ebooksaveoptions/check_excel_restriction/
+is_root: false
+---
+
+## check_excel_restriction property
+
+
+Whether check restriction of excel file when user modify cells related objects.
+For example, excel does not allow inputting string value longer than 32K.
+When you input a value longer than 32K, it will be truncated.
+### Definition:
+```python
+@property
+def check_excel_restriction(self):
+ ...
+@check_excel_restriction.setter
+def check_excel_restriction(self, value):
+ ...
+```
+
+### See Also
+* module [`aspose.cells.saving`](../../)
+* class [`EbookSaveOptions`](/cells/python-net/aspose.cells.saving/ebooksaveoptions)
diff --git a/english/aspose.cells.saving/ebooksaveoptions/clear_data/_index.md b/english/aspose.cells.saving/ebooksaveoptions/clear_data/_index.md
index 0eb29e962b..28a2267622 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/clear_data/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/clear_data/_index.md
@@ -3,7 +3,7 @@ title: clear_data property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 110
+weight: 120
url: /aspose.cells.saving/ebooksaveoptions/clear_data/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/create_directory/_index.md b/english/aspose.cells.saving/ebooksaveoptions/create_directory/_index.md
index 192f3f49b1..d39ca16172 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/create_directory/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/create_directory/_index.md
@@ -3,7 +3,7 @@ title: create_directory property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 120
+weight: 130
url: /aspose.cells.saving/ebooksaveoptions/create_directory/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/css_styles/_index.md b/english/aspose.cells.saving/ebooksaveoptions/css_styles/_index.md
index a10b1c7df1..437acd05ec 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/css_styles/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/css_styles/_index.md
@@ -3,7 +3,7 @@ title: css_styles property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 130
+weight: 140
url: /aspose.cells.saving/ebooksaveoptions/css_styles/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/default_font_name/_index.md b/english/aspose.cells.saving/ebooksaveoptions/default_font_name/_index.md
index 56e8e41a17..f90837cde3 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/default_font_name/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/default_font_name/_index.md
@@ -3,7 +3,7 @@ title: default_font_name property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 140
+weight: 150
url: /aspose.cells.saving/ebooksaveoptions/default_font_name/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/disable_css/_index.md b/english/aspose.cells.saving/ebooksaveoptions/disable_css/_index.md
new file mode 100644
index 0000000000..5b68de4afb
--- /dev/null
+++ b/english/aspose.cells.saving/ebooksaveoptions/disable_css/_index.md
@@ -0,0 +1,28 @@
+---
+title: disable_css property
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 160
+url: /aspose.cells.saving/ebooksaveoptions/disable_css/
+is_root: false
+---
+
+## disable_css property
+
+
+Indicates whether only inline styles are applied, without relying on CSS.
+The default value is false.
+### Definition:
+```python
+@property
+def disable_css(self):
+ ...
+@disable_css.setter
+def disable_css(self, value):
+ ...
+```
+
+### See Also
+* module [`aspose.cells.saving`](../../)
+* class [`EbookSaveOptions`](/cells/python-net/aspose.cells.saving/ebooksaveoptions)
diff --git a/english/aspose.cells.saving/ebooksaveoptions/disable_downlevel_revealed_comments/_index.md b/english/aspose.cells.saving/ebooksaveoptions/disable_downlevel_revealed_comments/_index.md
index 5508ab4141..244879e5e5 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/disable_downlevel_revealed_comments/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/disable_downlevel_revealed_comments/_index.md
@@ -3,7 +3,7 @@ title: disable_downlevel_revealed_comments property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 150
+weight: 170
url: /aspose.cells.saving/ebooksaveoptions/disable_downlevel_revealed_comments/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/encode_entity_as_code/_index.md b/english/aspose.cells.saving/ebooksaveoptions/encode_entity_as_code/_index.md
index 545c5e0d49..ff8f123c65 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/encode_entity_as_code/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/encode_entity_as_code/_index.md
@@ -3,7 +3,7 @@ title: encode_entity_as_code property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 160
+weight: 180
url: /aspose.cells.saving/ebooksaveoptions/encode_entity_as_code/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/encoding/_index.md b/english/aspose.cells.saving/ebooksaveoptions/encoding/_index.md
index 6887f4ed92..371bb16113 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/encoding/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/encoding/_index.md
@@ -3,7 +3,7 @@ title: encoding property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 170
+weight: 190
url: /aspose.cells.saving/ebooksaveoptions/encoding/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/encrypt_document_properties/_index.md b/english/aspose.cells.saving/ebooksaveoptions/encrypt_document_properties/_index.md
index 1e47bc860f..ed0ebf5dfe 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/encrypt_document_properties/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/encrypt_document_properties/_index.md
@@ -3,7 +3,7 @@ title: encrypt_document_properties property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 180
+weight: 200
url: /aspose.cells.saving/ebooksaveoptions/encrypt_document_properties/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/exclude_unused_styles/_index.md b/english/aspose.cells.saving/ebooksaveoptions/exclude_unused_styles/_index.md
index e1ce438e88..8cf77ed430 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/exclude_unused_styles/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/exclude_unused_styles/_index.md
@@ -3,7 +3,7 @@ title: exclude_unused_styles property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 190
+weight: 210
url: /aspose.cells.saving/ebooksaveoptions/exclude_unused_styles/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/export_active_worksheet_only/_index.md b/english/aspose.cells.saving/ebooksaveoptions/export_active_worksheet_only/_index.md
index 26fbddf057..bdee634eb6 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/export_active_worksheet_only/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/export_active_worksheet_only/_index.md
@@ -3,7 +3,7 @@ title: export_active_worksheet_only property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 200
+weight: 220
url: /aspose.cells.saving/ebooksaveoptions/export_active_worksheet_only/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/export_area/_index.md b/english/aspose.cells.saving/ebooksaveoptions/export_area/_index.md
index 8309b66c88..784f5304b8 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/export_area/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/export_area/_index.md
@@ -3,7 +3,7 @@ title: export_area property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 210
+weight: 230
url: /aspose.cells.saving/ebooksaveoptions/export_area/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/export_bogus_row_data/_index.md b/english/aspose.cells.saving/ebooksaveoptions/export_bogus_row_data/_index.md
index 13eca21467..60f67f431c 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/export_bogus_row_data/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/export_bogus_row_data/_index.md
@@ -3,7 +3,7 @@ title: export_bogus_row_data property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 220
+weight: 240
url: /aspose.cells.saving/ebooksaveoptions/export_bogus_row_data/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/export_cell_coordinate/_index.md b/english/aspose.cells.saving/ebooksaveoptions/export_cell_coordinate/_index.md
index 79370d0e19..4edd58c67a 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/export_cell_coordinate/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/export_cell_coordinate/_index.md
@@ -3,7 +3,7 @@ title: export_cell_coordinate property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 230
+weight: 250
url: /aspose.cells.saving/ebooksaveoptions/export_cell_coordinate/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/export_comments_type/_index.md b/english/aspose.cells.saving/ebooksaveoptions/export_comments_type/_index.md
index 5162c3ea41..8301e18357 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/export_comments_type/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/export_comments_type/_index.md
@@ -3,7 +3,7 @@ title: export_comments_type property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 240
+weight: 260
url: /aspose.cells.saving/ebooksaveoptions/export_comments_type/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/export_data_options/_index.md b/english/aspose.cells.saving/ebooksaveoptions/export_data_options/_index.md
index 35e15804f0..cfb99da581 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/export_data_options/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/export_data_options/_index.md
@@ -3,7 +3,7 @@ title: export_data_options property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 250
+weight: 270
url: /aspose.cells.saving/ebooksaveoptions/export_data_options/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/export_document_properties/_index.md b/english/aspose.cells.saving/ebooksaveoptions/export_document_properties/_index.md
index 2c626cc7cd..0b20616eb8 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/export_document_properties/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/export_document_properties/_index.md
@@ -3,7 +3,7 @@ title: export_document_properties property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 260
+weight: 280
url: /aspose.cells.saving/ebooksaveoptions/export_document_properties/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/export_extra_headings/_index.md b/english/aspose.cells.saving/ebooksaveoptions/export_extra_headings/_index.md
index efbe5c2683..45246b7b41 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/export_extra_headings/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/export_extra_headings/_index.md
@@ -3,7 +3,7 @@ title: export_extra_headings property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 270
+weight: 290
url: /aspose.cells.saving/ebooksaveoptions/export_extra_headings/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/export_formula/_index.md b/english/aspose.cells.saving/ebooksaveoptions/export_formula/_index.md
index 4bcbe2213e..220952c285 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/export_formula/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/export_formula/_index.md
@@ -3,7 +3,7 @@ title: export_formula property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 280
+weight: 300
url: /aspose.cells.saving/ebooksaveoptions/export_formula/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/export_frame_scripts_and_properties/_index.md b/english/aspose.cells.saving/ebooksaveoptions/export_frame_scripts_and_properties/_index.md
index 84f49fa31b..bf791264f6 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/export_frame_scripts_and_properties/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/export_frame_scripts_and_properties/_index.md
@@ -3,7 +3,7 @@ title: export_frame_scripts_and_properties property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 290
+weight: 310
url: /aspose.cells.saving/ebooksaveoptions/export_frame_scripts_and_properties/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/export_grid_lines/_index.md b/english/aspose.cells.saving/ebooksaveoptions/export_grid_lines/_index.md
index 43de53da6e..90f8be5edb 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/export_grid_lines/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/export_grid_lines/_index.md
@@ -3,7 +3,7 @@ title: export_grid_lines property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 300
+weight: 320
url: /aspose.cells.saving/ebooksaveoptions/export_grid_lines/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/export_headings/_index.md b/english/aspose.cells.saving/ebooksaveoptions/export_headings/_index.md
index 87049b5d8d..379f6fff4e 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/export_headings/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/export_headings/_index.md
@@ -3,7 +3,7 @@ title: export_headings property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 310
+weight: 330
url: /aspose.cells.saving/ebooksaveoptions/export_headings/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/export_hidden_worksheet/_index.md b/english/aspose.cells.saving/ebooksaveoptions/export_hidden_worksheet/_index.md
index 779fac1c31..deb4db7419 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/export_hidden_worksheet/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/export_hidden_worksheet/_index.md
@@ -3,7 +3,7 @@ title: export_hidden_worksheet property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 320
+weight: 340
url: /aspose.cells.saving/ebooksaveoptions/export_hidden_worksheet/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/export_images_as_base64/_index.md b/english/aspose.cells.saving/ebooksaveoptions/export_images_as_base64/_index.md
index 2cebb4596f..5ae66d9ff6 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/export_images_as_base64/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/export_images_as_base64/_index.md
@@ -3,7 +3,7 @@ title: export_images_as_base64 property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 330
+weight: 350
url: /aspose.cells.saving/ebooksaveoptions/export_images_as_base64/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/export_object_listener/_index.md b/english/aspose.cells.saving/ebooksaveoptions/export_object_listener/_index.md
index 061b7c8439..5bc43753f5 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/export_object_listener/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/export_object_listener/_index.md
@@ -3,7 +3,7 @@ title: export_object_listener property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 340
+weight: 360
url: /aspose.cells.saving/ebooksaveoptions/export_object_listener/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/export_page_footers/_index.md b/english/aspose.cells.saving/ebooksaveoptions/export_page_footers/_index.md
index b4c38379a2..8100074d66 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/export_page_footers/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/export_page_footers/_index.md
@@ -3,7 +3,7 @@ title: export_page_footers property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 350
+weight: 370
url: /aspose.cells.saving/ebooksaveoptions/export_page_footers/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/export_page_headers/_index.md b/english/aspose.cells.saving/ebooksaveoptions/export_page_headers/_index.md
index 1d3df700ce..acfd3b2aff 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/export_page_headers/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/export_page_headers/_index.md
@@ -3,7 +3,7 @@ title: export_page_headers property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 360
+weight: 380
url: /aspose.cells.saving/ebooksaveoptions/export_page_headers/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/export_print_area_only/_index.md b/english/aspose.cells.saving/ebooksaveoptions/export_print_area_only/_index.md
index f9d540ec1e..ca1722a380 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/export_print_area_only/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/export_print_area_only/_index.md
@@ -3,7 +3,7 @@ title: export_print_area_only property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 370
+weight: 390
url: /aspose.cells.saving/ebooksaveoptions/export_print_area_only/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/export_row_column_headings/_index.md b/english/aspose.cells.saving/ebooksaveoptions/export_row_column_headings/_index.md
index c06ad49e8c..a7a9267c53 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/export_row_column_headings/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/export_row_column_headings/_index.md
@@ -3,7 +3,7 @@ title: export_row_column_headings property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 380
+weight: 400
url: /aspose.cells.saving/ebooksaveoptions/export_row_column_headings/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/export_similar_border_style/_index.md b/english/aspose.cells.saving/ebooksaveoptions/export_similar_border_style/_index.md
index 554e6e428b..33d791eda7 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/export_similar_border_style/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/export_similar_border_style/_index.md
@@ -3,7 +3,7 @@ title: export_similar_border_style property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 390
+weight: 410
url: /aspose.cells.saving/ebooksaveoptions/export_similar_border_style/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/export_single_tab/_index.md b/english/aspose.cells.saving/ebooksaveoptions/export_single_tab/_index.md
index 23bf0d401b..8fdd9ad733 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/export_single_tab/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/export_single_tab/_index.md
@@ -3,7 +3,7 @@ title: export_single_tab property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 400
+weight: 420
url: /aspose.cells.saving/ebooksaveoptions/export_single_tab/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/export_workbook_properties/_index.md b/english/aspose.cells.saving/ebooksaveoptions/export_workbook_properties/_index.md
index 2db3429b20..24855b546d 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/export_workbook_properties/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/export_workbook_properties/_index.md
@@ -3,7 +3,7 @@ title: export_workbook_properties property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 410
+weight: 430
url: /aspose.cells.saving/ebooksaveoptions/export_workbook_properties/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/export_worksheet_css_separately/_index.md b/english/aspose.cells.saving/ebooksaveoptions/export_worksheet_css_separately/_index.md
index cf598c31cc..22d852aef8 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/export_worksheet_css_separately/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/export_worksheet_css_separately/_index.md
@@ -3,7 +3,7 @@ title: export_worksheet_css_separately property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 420
+weight: 440
url: /aspose.cells.saving/ebooksaveoptions/export_worksheet_css_separately/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/export_worksheet_properties/_index.md b/english/aspose.cells.saving/ebooksaveoptions/export_worksheet_properties/_index.md
index 385236b549..827fdc5145 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/export_worksheet_properties/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/export_worksheet_properties/_index.md
@@ -3,7 +3,7 @@ title: export_worksheet_properties property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 430
+weight: 450
url: /aspose.cells.saving/ebooksaveoptions/export_worksheet_properties/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/file_path_provider/_index.md b/english/aspose.cells.saving/ebooksaveoptions/file_path_provider/_index.md
index f35ccc6988..e1df19ec3b 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/file_path_provider/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/file_path_provider/_index.md
@@ -3,7 +3,7 @@ title: file_path_provider property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 440
+weight: 460
url: /aspose.cells.saving/ebooksaveoptions/file_path_provider/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/format_data_ignore_column_width/_index.md b/english/aspose.cells.saving/ebooksaveoptions/format_data_ignore_column_width/_index.md
index e43a969fff..5ad3478659 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/format_data_ignore_column_width/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/format_data_ignore_column_width/_index.md
@@ -3,7 +3,7 @@ title: format_data_ignore_column_width property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 450
+weight: 470
url: /aspose.cells.saving/ebooksaveoptions/format_data_ignore_column_width/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/hidden_col_display_type/_index.md b/english/aspose.cells.saving/ebooksaveoptions/hidden_col_display_type/_index.md
index 7fe8dcfd4d..1f7b2581f1 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/hidden_col_display_type/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/hidden_col_display_type/_index.md
@@ -3,7 +3,7 @@ title: hidden_col_display_type property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 460
+weight: 480
url: /aspose.cells.saving/ebooksaveoptions/hidden_col_display_type/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/hidden_row_display_type/_index.md b/english/aspose.cells.saving/ebooksaveoptions/hidden_row_display_type/_index.md
index 1103d37623..d6953f570b 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/hidden_row_display_type/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/hidden_row_display_type/_index.md
@@ -3,7 +3,7 @@ title: hidden_row_display_type property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 470
+weight: 490
url: /aspose.cells.saving/ebooksaveoptions/hidden_row_display_type/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/hide_overflow_wrapped_text/_index.md b/english/aspose.cells.saving/ebooksaveoptions/hide_overflow_wrapped_text/_index.md
index 29165673fb..6f24f5ff9c 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/hide_overflow_wrapped_text/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/hide_overflow_wrapped_text/_index.md
@@ -3,7 +3,7 @@ title: hide_overflow_wrapped_text property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 480
+weight: 500
url: /aspose.cells.saving/ebooksaveoptions/hide_overflow_wrapped_text/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/html_cross_string_type/_index.md b/english/aspose.cells.saving/ebooksaveoptions/html_cross_string_type/_index.md
index 8b39a08d66..4ff1ce4c97 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/html_cross_string_type/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/html_cross_string_type/_index.md
@@ -3,7 +3,7 @@ title: html_cross_string_type property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 490
+weight: 510
url: /aspose.cells.saving/ebooksaveoptions/html_cross_string_type/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/ignore_invisible_shapes/_index.md b/english/aspose.cells.saving/ebooksaveoptions/ignore_invisible_shapes/_index.md
index 97a3d03fd8..5d4bcde05f 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/ignore_invisible_shapes/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/ignore_invisible_shapes/_index.md
@@ -3,7 +3,7 @@ title: ignore_invisible_shapes property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 500
+weight: 520
url: /aspose.cells.saving/ebooksaveoptions/ignore_invisible_shapes/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/image_options/_index.md b/english/aspose.cells.saving/ebooksaveoptions/image_options/_index.md
index 802fa2b544..358b5567d2 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/image_options/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/image_options/_index.md
@@ -3,7 +3,7 @@ title: image_options property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 510
+weight: 530
url: /aspose.cells.saving/ebooksaveoptions/image_options/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/image_scalable/_index.md b/english/aspose.cells.saving/ebooksaveoptions/image_scalable/_index.md
index 0a8c199014..311d2f2dad 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/image_scalable/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/image_scalable/_index.md
@@ -3,7 +3,7 @@ title: image_scalable property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 520
+weight: 540
url: /aspose.cells.saving/ebooksaveoptions/image_scalable/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/is_border_collapsed/_index.md b/english/aspose.cells.saving/ebooksaveoptions/is_border_collapsed/_index.md
index 46ed72e6a6..66434b8041 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/is_border_collapsed/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/is_border_collapsed/_index.md
@@ -3,7 +3,7 @@ title: is_border_collapsed property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 530
+weight: 550
url: /aspose.cells.saving/ebooksaveoptions/is_border_collapsed/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/is_exp_image_to_temp_dir/_index.md b/english/aspose.cells.saving/ebooksaveoptions/is_exp_image_to_temp_dir/_index.md
index 15c08afdd0..d4fde7065e 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/is_exp_image_to_temp_dir/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/is_exp_image_to_temp_dir/_index.md
@@ -3,7 +3,7 @@ title: is_exp_image_to_temp_dir property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 540
+weight: 560
url: /aspose.cells.saving/ebooksaveoptions/is_exp_image_to_temp_dir/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/is_export_comments/_index.md b/english/aspose.cells.saving/ebooksaveoptions/is_export_comments/_index.md
index bdce9554d8..41afba46c9 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/is_export_comments/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/is_export_comments/_index.md
@@ -3,7 +3,7 @@ title: is_export_comments property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 550
+weight: 570
url: /aspose.cells.saving/ebooksaveoptions/is_export_comments/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/is_full_path_link/_index.md b/english/aspose.cells.saving/ebooksaveoptions/is_full_path_link/_index.md
index d1e9e6b4d3..b187ce318c 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/is_full_path_link/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/is_full_path_link/_index.md
@@ -3,7 +3,7 @@ title: is_full_path_link property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 560
+weight: 580
url: /aspose.cells.saving/ebooksaveoptions/is_full_path_link/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/is_ie_compatible/_index.md b/english/aspose.cells.saving/ebooksaveoptions/is_ie_compatible/_index.md
index 98e6f7b1d7..358ad8993a 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/is_ie_compatible/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/is_ie_compatible/_index.md
@@ -3,7 +3,7 @@ title: is_ie_compatible property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 570
+weight: 590
url: /aspose.cells.saving/ebooksaveoptions/is_ie_compatible/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/is_js_browser_compatible/_index.md b/english/aspose.cells.saving/ebooksaveoptions/is_js_browser_compatible/_index.md
index 9f7489284f..6bb7d56330 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/is_js_browser_compatible/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/is_js_browser_compatible/_index.md
@@ -3,7 +3,7 @@ title: is_js_browser_compatible property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 580
+weight: 600
url: /aspose.cells.saving/ebooksaveoptions/is_js_browser_compatible/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/is_mobile_compatible/_index.md b/english/aspose.cells.saving/ebooksaveoptions/is_mobile_compatible/_index.md
index 962b898fa6..839c183511 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/is_mobile_compatible/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/is_mobile_compatible/_index.md
@@ -3,7 +3,7 @@ title: is_mobile_compatible property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 590
+weight: 610
url: /aspose.cells.saving/ebooksaveoptions/is_mobile_compatible/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/link_target_type/_index.md b/english/aspose.cells.saving/ebooksaveoptions/link_target_type/_index.md
index ac90d9de56..88ed64f58c 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/link_target_type/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/link_target_type/_index.md
@@ -3,7 +3,7 @@ title: link_target_type property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 600
+weight: 620
url: /aspose.cells.saving/ebooksaveoptions/link_target_type/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/merge_areas/_index.md b/english/aspose.cells.saving/ebooksaveoptions/merge_areas/_index.md
index fcb465931c..27f83a9d5f 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/merge_areas/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/merge_areas/_index.md
@@ -3,7 +3,7 @@ title: merge_areas property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 610
+weight: 630
url: /aspose.cells.saving/ebooksaveoptions/merge_areas/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/merge_empty_td_forcely/_index.md b/english/aspose.cells.saving/ebooksaveoptions/merge_empty_td_forcely/_index.md
index a7d6af8ec6..07f742155e 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/merge_empty_td_forcely/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/merge_empty_td_forcely/_index.md
@@ -3,7 +3,7 @@ title: merge_empty_td_forcely property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 620
+weight: 640
url: /aspose.cells.saving/ebooksaveoptions/merge_empty_td_forcely/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/merge_empty_td_type/_index.md b/english/aspose.cells.saving/ebooksaveoptions/merge_empty_td_type/_index.md
index 3fa0b70cc8..879a5295b0 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/merge_empty_td_type/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/merge_empty_td_type/_index.md
@@ -3,7 +3,7 @@ title: merge_empty_td_type property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 630
+weight: 650
url: /aspose.cells.saving/ebooksaveoptions/merge_empty_td_type/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/office_math_output_mode/_index.md b/english/aspose.cells.saving/ebooksaveoptions/office_math_output_mode/_index.md
index 7174346b31..8fc58880e8 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/office_math_output_mode/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/office_math_output_mode/_index.md
@@ -3,7 +3,7 @@ title: office_math_output_mode property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 640
+weight: 660
url: /aspose.cells.saving/ebooksaveoptions/office_math_output_mode/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/page_title/_index.md b/english/aspose.cells.saving/ebooksaveoptions/page_title/_index.md
index 82088181a8..7537d2266e 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/page_title/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/page_title/_index.md
@@ -3,7 +3,7 @@ title: page_title property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 650
+weight: 670
url: /aspose.cells.saving/ebooksaveoptions/page_title/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/parse_html_tag_in_cell/_index.md b/english/aspose.cells.saving/ebooksaveoptions/parse_html_tag_in_cell/_index.md
index e519b6f01a..6cb1ff48e3 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/parse_html_tag_in_cell/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/parse_html_tag_in_cell/_index.md
@@ -3,7 +3,7 @@ title: parse_html_tag_in_cell property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 660
+weight: 680
url: /aspose.cells.saving/ebooksaveoptions/parse_html_tag_in_cell/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/presentation_preference/_index.md b/english/aspose.cells.saving/ebooksaveoptions/presentation_preference/_index.md
index 3d945193bd..97992040e5 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/presentation_preference/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/presentation_preference/_index.md
@@ -3,7 +3,7 @@ title: presentation_preference property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 670
+weight: 690
url: /aspose.cells.saving/ebooksaveoptions/presentation_preference/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/refresh_chart_cache/_index.md b/english/aspose.cells.saving/ebooksaveoptions/refresh_chart_cache/_index.md
index 4b6052f795..b12c2873f2 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/refresh_chart_cache/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/refresh_chart_cache/_index.md
@@ -3,7 +3,7 @@ title: refresh_chart_cache property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 680
+weight: 700
url: /aspose.cells.saving/ebooksaveoptions/refresh_chart_cache/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/save_as_single_file/_index.md b/english/aspose.cells.saving/ebooksaveoptions/save_as_single_file/_index.md
index e187871890..78e706676e 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/save_as_single_file/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/save_as_single_file/_index.md
@@ -3,7 +3,7 @@ title: save_as_single_file property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 690
+weight: 710
url: /aspose.cells.saving/ebooksaveoptions/save_as_single_file/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/save_format/_index.md b/english/aspose.cells.saving/ebooksaveoptions/save_format/_index.md
index 273ce76b32..a75e9555fb 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/save_format/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/save_format/_index.md
@@ -3,7 +3,7 @@ title: save_format property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 700
+weight: 720
url: /aspose.cells.saving/ebooksaveoptions/save_format/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/show_all_sheets/_index.md b/english/aspose.cells.saving/ebooksaveoptions/show_all_sheets/_index.md
index 284e4abfb8..1a8d8be0af 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/show_all_sheets/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/show_all_sheets/_index.md
@@ -3,7 +3,7 @@ title: show_all_sheets property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 710
+weight: 730
url: /aspose.cells.saving/ebooksaveoptions/show_all_sheets/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/sort_external_names/_index.md b/english/aspose.cells.saving/ebooksaveoptions/sort_external_names/_index.md
index 5c94cf34e7..c4a2f60b03 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/sort_external_names/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/sort_external_names/_index.md
@@ -3,7 +3,7 @@ title: sort_external_names property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 720
+weight: 740
url: /aspose.cells.saving/ebooksaveoptions/sort_external_names/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/sort_names/_index.md b/english/aspose.cells.saving/ebooksaveoptions/sort_names/_index.md
index 5290c99878..cf87939f6d 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/sort_names/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/sort_names/_index.md
@@ -3,7 +3,7 @@ title: sort_names property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 730
+weight: 750
url: /aspose.cells.saving/ebooksaveoptions/sort_names/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/stream_provider/_index.md b/english/aspose.cells.saving/ebooksaveoptions/stream_provider/_index.md
index 095041cb40..4ffc069d1d 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/stream_provider/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/stream_provider/_index.md
@@ -3,7 +3,7 @@ title: stream_provider property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 740
+weight: 760
url: /aspose.cells.saving/ebooksaveoptions/stream_provider/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/table_css_id/_index.md b/english/aspose.cells.saving/ebooksaveoptions/table_css_id/_index.md
index 5de7c9bc97..9dfa35c636 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/table_css_id/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/table_css_id/_index.md
@@ -3,7 +3,7 @@ title: table_css_id property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 750
+weight: 770
url: /aspose.cells.saving/ebooksaveoptions/table_css_id/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/update_smart_art/_index.md b/english/aspose.cells.saving/ebooksaveoptions/update_smart_art/_index.md
index 0a707401ca..fed3f3e399 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/update_smart_art/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/update_smart_art/_index.md
@@ -3,7 +3,7 @@ title: update_smart_art property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 760
+weight: 780
url: /aspose.cells.saving/ebooksaveoptions/update_smart_art/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/validate_merged_areas/_index.md b/english/aspose.cells.saving/ebooksaveoptions/validate_merged_areas/_index.md
index bf3adb9f5e..b1455354cf 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/validate_merged_areas/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/validate_merged_areas/_index.md
@@ -3,7 +3,7 @@ title: validate_merged_areas property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 770
+weight: 790
url: /aspose.cells.saving/ebooksaveoptions/validate_merged_areas/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/warning_callback/_index.md b/english/aspose.cells.saving/ebooksaveoptions/warning_callback/_index.md
index 4962107408..ba869b362b 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/warning_callback/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/warning_callback/_index.md
@@ -3,7 +3,7 @@ title: warning_callback property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 780
+weight: 800
url: /aspose.cells.saving/ebooksaveoptions/warning_callback/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/width_scalable/_index.md b/english/aspose.cells.saving/ebooksaveoptions/width_scalable/_index.md
index 03b55feb6b..ad2eaabdac 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/width_scalable/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/width_scalable/_index.md
@@ -3,7 +3,7 @@ title: width_scalable property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 790
+weight: 810
url: /aspose.cells.saving/ebooksaveoptions/width_scalable/
is_root: false
---
diff --git a/english/aspose.cells.saving/ebooksaveoptions/worksheet_scalable/_index.md b/english/aspose.cells.saving/ebooksaveoptions/worksheet_scalable/_index.md
index 188c93a5ce..4da487924f 100644
--- a/english/aspose.cells.saving/ebooksaveoptions/worksheet_scalable/_index.md
+++ b/english/aspose.cells.saving/ebooksaveoptions/worksheet_scalable/_index.md
@@ -3,7 +3,7 @@ title: worksheet_scalable property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 800
+weight: 820
url: /aspose.cells.saving/ebooksaveoptions/worksheet_scalable/
is_root: false
---
diff --git a/english/aspose.cells.saving/sqlscriptsaveoptions/_index.md b/english/aspose.cells.saving/sqlscriptsaveoptions/_index.md
index 0cf0a95a81..ebcc17a433 100644
--- a/english/aspose.cells.saving/sqlscriptsaveoptions/_index.md
+++ b/english/aspose.cells.saving/sqlscriptsaveoptions/_index.md
@@ -40,6 +40,7 @@ The SqlScriptSaveOptions type exposes the following members:
| [sort_external_names](/cells/python-net/aspose.cells.saving/sqlscriptsaveoptions/sort_external_names) | Indicates whether sorting external defined names before saving file. |
| [refresh_chart_cache](/cells/python-net/aspose.cells.saving/sqlscriptsaveoptions/refresh_chart_cache) | Indicates whether refreshing chart cache data |
| [warning_callback](/cells/python-net/aspose.cells.saving/sqlscriptsaveoptions/warning_callback) | Gets or sets warning callback. |
+| [check_excel_restriction](/cells/python-net/aspose.cells.saving/sqlscriptsaveoptions/check_excel_restriction) | Whether check restriction of excel file when user modify cells related objects.
For example, excel does not allow inputting string value longer than 32K.
When you input a value longer than 32K, it will be truncated. |
| [update_smart_art](/cells/python-net/aspose.cells.saving/sqlscriptsaveoptions/update_smart_art) | Indicates whether updating smart art setting.
The default value is false. |
| [encrypt_document_properties](/cells/python-net/aspose.cells.saving/sqlscriptsaveoptions/encrypt_document_properties) | Indicates whether encrypt document properties when saving as .xls file.
The default value is true. |
| [check_if_table_exists](/cells/python-net/aspose.cells.saving/sqlscriptsaveoptions/check_if_table_exists) | Check if the table name exists before creating |
diff --git a/english/aspose.cells.saving/sqlscriptsaveoptions/check_excel_restriction/_index.md b/english/aspose.cells.saving/sqlscriptsaveoptions/check_excel_restriction/_index.md
new file mode 100644
index 0000000000..0fe4a9a963
--- /dev/null
+++ b/english/aspose.cells.saving/sqlscriptsaveoptions/check_excel_restriction/_index.md
@@ -0,0 +1,29 @@
+---
+title: check_excel_restriction property
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 60
+url: /aspose.cells.saving/sqlscriptsaveoptions/check_excel_restriction/
+is_root: false
+---
+
+## check_excel_restriction property
+
+
+Whether check restriction of excel file when user modify cells related objects.
+For example, excel does not allow inputting string value longer than 32K.
+When you input a value longer than 32K, it will be truncated.
+### Definition:
+```python
+@property
+def check_excel_restriction(self):
+ ...
+@check_excel_restriction.setter
+def check_excel_restriction(self, value):
+ ...
+```
+
+### See Also
+* module [`aspose.cells.saving`](../../)
+* class [`SqlScriptSaveOptions`](/cells/python-net/aspose.cells.saving/sqlscriptsaveoptions)
diff --git a/english/aspose.cells.saving/sqlscriptsaveoptions/check_if_table_exists/_index.md b/english/aspose.cells.saving/sqlscriptsaveoptions/check_if_table_exists/_index.md
index 9fdefe6c44..c26b1670eb 100644
--- a/english/aspose.cells.saving/sqlscriptsaveoptions/check_if_table_exists/_index.md
+++ b/english/aspose.cells.saving/sqlscriptsaveoptions/check_if_table_exists/_index.md
@@ -3,7 +3,7 @@ title: check_if_table_exists property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 60
+weight: 70
url: /aspose.cells.saving/sqlscriptsaveoptions/check_if_table_exists/
is_root: false
---
diff --git a/english/aspose.cells.saving/sqlscriptsaveoptions/clear_data/_index.md b/english/aspose.cells.saving/sqlscriptsaveoptions/clear_data/_index.md
index b2fa1d1f99..6a0549e73f 100644
--- a/english/aspose.cells.saving/sqlscriptsaveoptions/clear_data/_index.md
+++ b/english/aspose.cells.saving/sqlscriptsaveoptions/clear_data/_index.md
@@ -3,7 +3,7 @@ title: clear_data property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 70
+weight: 80
url: /aspose.cells.saving/sqlscriptsaveoptions/clear_data/
is_root: false
---
diff --git a/english/aspose.cells.saving/sqlscriptsaveoptions/column_type_map/_index.md b/english/aspose.cells.saving/sqlscriptsaveoptions/column_type_map/_index.md
index 45fdbf894d..c4fb76bbc0 100644
--- a/english/aspose.cells.saving/sqlscriptsaveoptions/column_type_map/_index.md
+++ b/english/aspose.cells.saving/sqlscriptsaveoptions/column_type_map/_index.md
@@ -3,7 +3,7 @@ title: column_type_map property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 80
+weight: 90
url: /aspose.cells.saving/sqlscriptsaveoptions/column_type_map/
is_root: false
---
diff --git a/english/aspose.cells.saving/sqlscriptsaveoptions/create_directory/_index.md b/english/aspose.cells.saving/sqlscriptsaveoptions/create_directory/_index.md
index c0bdc8055d..b3ab3f0143 100644
--- a/english/aspose.cells.saving/sqlscriptsaveoptions/create_directory/_index.md
+++ b/english/aspose.cells.saving/sqlscriptsaveoptions/create_directory/_index.md
@@ -3,7 +3,7 @@ title: create_directory property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 90
+weight: 100
url: /aspose.cells.saving/sqlscriptsaveoptions/create_directory/
is_root: false
---
diff --git a/english/aspose.cells.saving/sqlscriptsaveoptions/create_table/_index.md b/english/aspose.cells.saving/sqlscriptsaveoptions/create_table/_index.md
index f87adb1a79..502e9bf758 100644
--- a/english/aspose.cells.saving/sqlscriptsaveoptions/create_table/_index.md
+++ b/english/aspose.cells.saving/sqlscriptsaveoptions/create_table/_index.md
@@ -3,7 +3,7 @@ title: create_table property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 100
+weight: 110
url: /aspose.cells.saving/sqlscriptsaveoptions/create_table/
is_root: false
---
diff --git a/english/aspose.cells.saving/sqlscriptsaveoptions/encrypt_document_properties/_index.md b/english/aspose.cells.saving/sqlscriptsaveoptions/encrypt_document_properties/_index.md
index 94e6c1f845..a0d0a1653b 100644
--- a/english/aspose.cells.saving/sqlscriptsaveoptions/encrypt_document_properties/_index.md
+++ b/english/aspose.cells.saving/sqlscriptsaveoptions/encrypt_document_properties/_index.md
@@ -3,7 +3,7 @@ title: encrypt_document_properties property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 110
+weight: 120
url: /aspose.cells.saving/sqlscriptsaveoptions/encrypt_document_properties/
is_root: false
---
diff --git a/english/aspose.cells.saving/sqlscriptsaveoptions/export_area/_index.md b/english/aspose.cells.saving/sqlscriptsaveoptions/export_area/_index.md
index 7ad8ec864c..86718b4f05 100644
--- a/english/aspose.cells.saving/sqlscriptsaveoptions/export_area/_index.md
+++ b/english/aspose.cells.saving/sqlscriptsaveoptions/export_area/_index.md
@@ -3,7 +3,7 @@ title: export_area property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 120
+weight: 130
url: /aspose.cells.saving/sqlscriptsaveoptions/export_area/
is_root: false
---
diff --git a/english/aspose.cells.saving/sqlscriptsaveoptions/export_as_string/_index.md b/english/aspose.cells.saving/sqlscriptsaveoptions/export_as_string/_index.md
index 7ba3e50c5b..77670a7a16 100644
--- a/english/aspose.cells.saving/sqlscriptsaveoptions/export_as_string/_index.md
+++ b/english/aspose.cells.saving/sqlscriptsaveoptions/export_as_string/_index.md
@@ -3,7 +3,7 @@ title: export_as_string property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 130
+weight: 140
url: /aspose.cells.saving/sqlscriptsaveoptions/export_as_string/
is_root: false
---
diff --git a/english/aspose.cells.saving/sqlscriptsaveoptions/has_header_row/_index.md b/english/aspose.cells.saving/sqlscriptsaveoptions/has_header_row/_index.md
index d26a950d43..3450146cf2 100644
--- a/english/aspose.cells.saving/sqlscriptsaveoptions/has_header_row/_index.md
+++ b/english/aspose.cells.saving/sqlscriptsaveoptions/has_header_row/_index.md
@@ -3,7 +3,7 @@ title: has_header_row property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 140
+weight: 150
url: /aspose.cells.saving/sqlscriptsaveoptions/has_header_row/
is_root: false
---
diff --git a/english/aspose.cells.saving/sqlscriptsaveoptions/id_name/_index.md b/english/aspose.cells.saving/sqlscriptsaveoptions/id_name/_index.md
index f4d7967e1d..e67ace46ce 100644
--- a/english/aspose.cells.saving/sqlscriptsaveoptions/id_name/_index.md
+++ b/english/aspose.cells.saving/sqlscriptsaveoptions/id_name/_index.md
@@ -3,7 +3,7 @@ title: id_name property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 150
+weight: 160
url: /aspose.cells.saving/sqlscriptsaveoptions/id_name/
is_root: false
---
diff --git a/english/aspose.cells.saving/sqlscriptsaveoptions/merge_areas/_index.md b/english/aspose.cells.saving/sqlscriptsaveoptions/merge_areas/_index.md
index 65b302ab51..3a1dc02f39 100644
--- a/english/aspose.cells.saving/sqlscriptsaveoptions/merge_areas/_index.md
+++ b/english/aspose.cells.saving/sqlscriptsaveoptions/merge_areas/_index.md
@@ -3,7 +3,7 @@ title: merge_areas property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 160
+weight: 170
url: /aspose.cells.saving/sqlscriptsaveoptions/merge_areas/
is_root: false
---
diff --git a/english/aspose.cells.saving/sqlscriptsaveoptions/operator_type/_index.md b/english/aspose.cells.saving/sqlscriptsaveoptions/operator_type/_index.md
index 45875af5c4..543a045982 100644
--- a/english/aspose.cells.saving/sqlscriptsaveoptions/operator_type/_index.md
+++ b/english/aspose.cells.saving/sqlscriptsaveoptions/operator_type/_index.md
@@ -3,7 +3,7 @@ title: operator_type property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 170
+weight: 180
url: /aspose.cells.saving/sqlscriptsaveoptions/operator_type/
is_root: false
---
diff --git a/english/aspose.cells.saving/sqlscriptsaveoptions/primary_key/_index.md b/english/aspose.cells.saving/sqlscriptsaveoptions/primary_key/_index.md
index c305b47542..8fdeeb3ad4 100644
--- a/english/aspose.cells.saving/sqlscriptsaveoptions/primary_key/_index.md
+++ b/english/aspose.cells.saving/sqlscriptsaveoptions/primary_key/_index.md
@@ -3,7 +3,7 @@ title: primary_key property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 180
+weight: 190
url: /aspose.cells.saving/sqlscriptsaveoptions/primary_key/
is_root: false
---
diff --git a/english/aspose.cells.saving/sqlscriptsaveoptions/refresh_chart_cache/_index.md b/english/aspose.cells.saving/sqlscriptsaveoptions/refresh_chart_cache/_index.md
index 21952daacf..5de4ea8ed5 100644
--- a/english/aspose.cells.saving/sqlscriptsaveoptions/refresh_chart_cache/_index.md
+++ b/english/aspose.cells.saving/sqlscriptsaveoptions/refresh_chart_cache/_index.md
@@ -3,7 +3,7 @@ title: refresh_chart_cache property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 190
+weight: 200
url: /aspose.cells.saving/sqlscriptsaveoptions/refresh_chart_cache/
is_root: false
---
diff --git a/english/aspose.cells.saving/sqlscriptsaveoptions/save_format/_index.md b/english/aspose.cells.saving/sqlscriptsaveoptions/save_format/_index.md
index 2a53b21ee4..255170f701 100644
--- a/english/aspose.cells.saving/sqlscriptsaveoptions/save_format/_index.md
+++ b/english/aspose.cells.saving/sqlscriptsaveoptions/save_format/_index.md
@@ -3,7 +3,7 @@ title: save_format property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 200
+weight: 210
url: /aspose.cells.saving/sqlscriptsaveoptions/save_format/
is_root: false
---
diff --git a/english/aspose.cells.saving/sqlscriptsaveoptions/separator/_index.md b/english/aspose.cells.saving/sqlscriptsaveoptions/separator/_index.md
index d213feefcc..4354e1dbe2 100644
--- a/english/aspose.cells.saving/sqlscriptsaveoptions/separator/_index.md
+++ b/english/aspose.cells.saving/sqlscriptsaveoptions/separator/_index.md
@@ -3,7 +3,7 @@ title: separator property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 210
+weight: 220
url: /aspose.cells.saving/sqlscriptsaveoptions/separator/
is_root: false
---
diff --git a/english/aspose.cells.saving/sqlscriptsaveoptions/sheet_indexes/_index.md b/english/aspose.cells.saving/sqlscriptsaveoptions/sheet_indexes/_index.md
index fadefb8dcc..14202012af 100644
--- a/english/aspose.cells.saving/sqlscriptsaveoptions/sheet_indexes/_index.md
+++ b/english/aspose.cells.saving/sqlscriptsaveoptions/sheet_indexes/_index.md
@@ -3,7 +3,7 @@ title: sheet_indexes property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 220
+weight: 230
url: /aspose.cells.saving/sqlscriptsaveoptions/sheet_indexes/
is_root: false
---
diff --git a/english/aspose.cells.saving/sqlscriptsaveoptions/sort_external_names/_index.md b/english/aspose.cells.saving/sqlscriptsaveoptions/sort_external_names/_index.md
index 1c91fd36f8..8840dc4955 100644
--- a/english/aspose.cells.saving/sqlscriptsaveoptions/sort_external_names/_index.md
+++ b/english/aspose.cells.saving/sqlscriptsaveoptions/sort_external_names/_index.md
@@ -3,7 +3,7 @@ title: sort_external_names property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 230
+weight: 240
url: /aspose.cells.saving/sqlscriptsaveoptions/sort_external_names/
is_root: false
---
diff --git a/english/aspose.cells.saving/sqlscriptsaveoptions/sort_names/_index.md b/english/aspose.cells.saving/sqlscriptsaveoptions/sort_names/_index.md
index be0085c803..40a212658f 100644
--- a/english/aspose.cells.saving/sqlscriptsaveoptions/sort_names/_index.md
+++ b/english/aspose.cells.saving/sqlscriptsaveoptions/sort_names/_index.md
@@ -3,7 +3,7 @@ title: sort_names property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 240
+weight: 250
url: /aspose.cells.saving/sqlscriptsaveoptions/sort_names/
is_root: false
---
diff --git a/english/aspose.cells.saving/sqlscriptsaveoptions/start_id/_index.md b/english/aspose.cells.saving/sqlscriptsaveoptions/start_id/_index.md
index d909620cce..4d61c2f2d2 100644
--- a/english/aspose.cells.saving/sqlscriptsaveoptions/start_id/_index.md
+++ b/english/aspose.cells.saving/sqlscriptsaveoptions/start_id/_index.md
@@ -3,7 +3,7 @@ title: start_id property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 250
+weight: 260
url: /aspose.cells.saving/sqlscriptsaveoptions/start_id/
is_root: false
---
diff --git a/english/aspose.cells.saving/sqlscriptsaveoptions/table_name/_index.md b/english/aspose.cells.saving/sqlscriptsaveoptions/table_name/_index.md
index 4fae51b4c1..a0bdd8f64a 100644
--- a/english/aspose.cells.saving/sqlscriptsaveoptions/table_name/_index.md
+++ b/english/aspose.cells.saving/sqlscriptsaveoptions/table_name/_index.md
@@ -3,7 +3,7 @@ title: table_name property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 260
+weight: 270
url: /aspose.cells.saving/sqlscriptsaveoptions/table_name/
is_root: false
---
diff --git a/english/aspose.cells.saving/sqlscriptsaveoptions/update_smart_art/_index.md b/english/aspose.cells.saving/sqlscriptsaveoptions/update_smart_art/_index.md
index 65be8fbb34..9820bfcee7 100644
--- a/english/aspose.cells.saving/sqlscriptsaveoptions/update_smart_art/_index.md
+++ b/english/aspose.cells.saving/sqlscriptsaveoptions/update_smart_art/_index.md
@@ -3,7 +3,7 @@ title: update_smart_art property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 270
+weight: 280
url: /aspose.cells.saving/sqlscriptsaveoptions/update_smart_art/
is_root: false
---
diff --git a/english/aspose.cells.saving/sqlscriptsaveoptions/validate_merged_areas/_index.md b/english/aspose.cells.saving/sqlscriptsaveoptions/validate_merged_areas/_index.md
index c518c0a037..a362e32be6 100644
--- a/english/aspose.cells.saving/sqlscriptsaveoptions/validate_merged_areas/_index.md
+++ b/english/aspose.cells.saving/sqlscriptsaveoptions/validate_merged_areas/_index.md
@@ -3,7 +3,7 @@ title: validate_merged_areas property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 280
+weight: 290
url: /aspose.cells.saving/sqlscriptsaveoptions/validate_merged_areas/
is_root: false
---
diff --git a/english/aspose.cells.saving/sqlscriptsaveoptions/warning_callback/_index.md b/english/aspose.cells.saving/sqlscriptsaveoptions/warning_callback/_index.md
index 7d1350474a..f37d6e401a 100644
--- a/english/aspose.cells.saving/sqlscriptsaveoptions/warning_callback/_index.md
+++ b/english/aspose.cells.saving/sqlscriptsaveoptions/warning_callback/_index.md
@@ -3,7 +3,7 @@ title: warning_callback property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 290
+weight: 300
url: /aspose.cells.saving/sqlscriptsaveoptions/warning_callback/
is_root: false
---
diff --git a/english/aspose.cells.tables/listcolumncollection/_index.md b/english/aspose.cells.tables/listcolumncollection/_index.md
index 3fa62d0f8c..cbcc259838 100644
--- a/english/aspose.cells.tables/listcolumncollection/_index.md
+++ b/english/aspose.cells.tables/listcolumncollection/_index.md
@@ -25,6 +25,8 @@ The ListColumnCollection type exposes the following members:
### Methods
| Method | Description |
| :- | :- |
+| [get](/cells/python-net/aspose.cells.tables/listcolumncollection/get/#int) | Add API for Python Via .Net.since this[int] is unsupported |
+| [get](/cells/python-net/aspose.cells.tables/listcolumncollection/get/#str) | Add API for Python Via .Net.since this[string] is unsupported |
| [copy_to](/cells/python-net/aspose.cells.tables/listcolumncollection/copy_to/#list) | Copies the entire array list to a compatible one-dimensional array list, starting at the beginning of the target array list. |
| [copy_to](/cells/python-net/aspose.cells.tables/listcolumncollection/copy_to/#int-list-int-int) | Copies a range of elements from the array list to a compatible one-dimensional array list, starting at the specified index of the target array list. |
| [index_of](/cells/python-net/aspose.cells.tables/listcolumncollection/index_of/#aspose.cells.tables.ListColumn-int) | Searches for the specified object and returns the zero-based index of the first occurrence within the range of elements in the array list that extends from the specified index to the last element. |
diff --git a/english/aspose.cells.tables/listcolumncollection/capacity/_index.md b/english/aspose.cells.tables/listcolumncollection/capacity/_index.md
index 8938a9c76a..af6d765c02 100644
--- a/english/aspose.cells.tables/listcolumncollection/capacity/_index.md
+++ b/english/aspose.cells.tables/listcolumncollection/capacity/_index.md
@@ -3,7 +3,7 @@ title: capacity property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 70
+weight: 80
url: /aspose.cells.tables/listcolumncollection/capacity/
is_root: false
---
diff --git a/english/aspose.cells.tables/listcolumncollection/get/_index.md b/english/aspose.cells.tables/listcolumncollection/get/_index.md
new file mode 100644
index 0000000000..316b9cd8a0
--- /dev/null
+++ b/english/aspose.cells.tables/listcolumncollection/get/_index.md
@@ -0,0 +1,53 @@
+---
+title: get method
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 40
+url: /aspose.cells.tables/listcolumncollection/get/
+is_root: false
+---
+
+## get {#int}
+
+Add API for Python Via .Net.since this[int] is unsupported
+
+
+
+```python
+def get(self, index):
+ ...
+```
+
+
+| Parameter | Type | Description |
+| :- | :- | :- |
+| index | int | |
+
+
+## get {#str}
+
+Add API for Python Via .Net.since this[string] is unsupported
+
+
+### Returns
+
+
+
+
+
+```python
+def get(self, name):
+ ...
+```
+
+
+| Parameter | Type | Description |
+| :- | :- | :- |
+| name | str | The name of the ListColumn |
+
+
+
+### See Also
+* module [`aspose.cells.tables`](../../)
+* class [`ListColumnCollection`](/cells/python-net/aspose.cells.tables/listcolumncollection)
diff --git a/english/aspose.cells.tables/listcolumncollection/index_of/_index.md b/english/aspose.cells.tables/listcolumncollection/index_of/_index.md
index d4a27d57a8..57acca4b91 100644
--- a/english/aspose.cells.tables/listcolumncollection/index_of/_index.md
+++ b/english/aspose.cells.tables/listcolumncollection/index_of/_index.md
@@ -3,7 +3,7 @@ title: index_of method
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 40
+weight: 50
url: /aspose.cells.tables/listcolumncollection/index_of/
is_root: false
---
diff --git a/english/aspose.cells.tables/listcolumncollection/last_index_of/_index.md b/english/aspose.cells.tables/listcolumncollection/last_index_of/_index.md
index e3925d5c40..43ff363276 100644
--- a/english/aspose.cells.tables/listcolumncollection/last_index_of/_index.md
+++ b/english/aspose.cells.tables/listcolumncollection/last_index_of/_index.md
@@ -3,7 +3,7 @@ title: last_index_of method
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 50
+weight: 60
url: /aspose.cells.tables/listcolumncollection/last_index_of/
is_root: false
---
diff --git a/english/aspose.cells.tables/listobjectcollection/_index.md b/english/aspose.cells.tables/listobjectcollection/_index.md
index 72ca5419c1..421f95c5f3 100644
--- a/english/aspose.cells.tables/listobjectcollection/_index.md
+++ b/english/aspose.cells.tables/listobjectcollection/_index.md
@@ -25,6 +25,8 @@ The ListObjectCollection type exposes the following members:
### Methods
| Method | Description |
| :- | :- |
+| [get](/cells/python-net/aspose.cells.tables/listobjectcollection/get/#int) | Add API for Python Via .Net.since this[int] is unsupported |
+| [get](/cells/python-net/aspose.cells.tables/listobjectcollection/get/#str) | Add API for Python Via .Net.since this[string] is unsupported |
| [add](/cells/python-net/aspose.cells.tables/listobjectcollection/add/#int-int-int-int-bool) | Adds a ListObject to the worksheet. |
| [add](/cells/python-net/aspose.cells.tables/listobjectcollection/add/#str-str-bool) | Adds a ListObject to the worksheet. |
| [copy_to](/cells/python-net/aspose.cells.tables/listobjectcollection/copy_to/#list) | Copies the entire array list to a compatible one-dimensional array list, starting at the beginning of the target array list. |
diff --git a/english/aspose.cells.tables/listobjectcollection/capacity/_index.md b/english/aspose.cells.tables/listobjectcollection/capacity/_index.md
index a4bc2eab0c..7c0cf586a0 100644
--- a/english/aspose.cells.tables/listobjectcollection/capacity/_index.md
+++ b/english/aspose.cells.tables/listobjectcollection/capacity/_index.md
@@ -3,7 +3,7 @@ title: capacity property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 90
+weight: 100
url: /aspose.cells.tables/listobjectcollection/capacity/
is_root: false
---
diff --git a/english/aspose.cells.tables/listobjectcollection/get/_index.md b/english/aspose.cells.tables/listobjectcollection/get/_index.md
new file mode 100644
index 0000000000..ff58b67195
--- /dev/null
+++ b/english/aspose.cells.tables/listobjectcollection/get/_index.md
@@ -0,0 +1,53 @@
+---
+title: get method
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 50
+url: /aspose.cells.tables/listobjectcollection/get/
+is_root: false
+---
+
+## get {#int}
+
+Add API for Python Via .Net.since this[int] is unsupported
+
+
+
+```python
+def get(self, index):
+ ...
+```
+
+
+| Parameter | Type | Description |
+| :- | :- | :- |
+| index | int | |
+
+
+## get {#str}
+
+Add API for Python Via .Net.since this[string] is unsupported
+
+
+### Returns
+
+
+
+
+
+```python
+def get(self, table_name):
+ ...
+```
+
+
+| Parameter | Type | Description |
+| :- | :- | :- |
+| table_name | str | ListObject name |
+
+
+
+### See Also
+* module [`aspose.cells.tables`](../../)
+* class [`ListObjectCollection`](/cells/python-net/aspose.cells.tables/listobjectcollection)
diff --git a/english/aspose.cells.tables/listobjectcollection/index_of/_index.md b/english/aspose.cells.tables/listobjectcollection/index_of/_index.md
index ac51391fb9..3491e6a9ca 100644
--- a/english/aspose.cells.tables/listobjectcollection/index_of/_index.md
+++ b/english/aspose.cells.tables/listobjectcollection/index_of/_index.md
@@ -3,7 +3,7 @@ title: index_of method
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 50
+weight: 60
url: /aspose.cells.tables/listobjectcollection/index_of/
is_root: false
---
diff --git a/english/aspose.cells.tables/listobjectcollection/last_index_of/_index.md b/english/aspose.cells.tables/listobjectcollection/last_index_of/_index.md
index e70f39ed51..fdd55952e5 100644
--- a/english/aspose.cells.tables/listobjectcollection/last_index_of/_index.md
+++ b/english/aspose.cells.tables/listobjectcollection/last_index_of/_index.md
@@ -3,7 +3,7 @@ title: last_index_of method
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 60
+weight: 70
url: /aspose.cells.tables/listobjectcollection/last_index_of/
is_root: false
---
diff --git a/english/aspose.cells.tables/listobjectcollection/update_column_name/_index.md b/english/aspose.cells.tables/listobjectcollection/update_column_name/_index.md
index d8edda38b9..f67b6ac97c 100644
--- a/english/aspose.cells.tables/listobjectcollection/update_column_name/_index.md
+++ b/english/aspose.cells.tables/listobjectcollection/update_column_name/_index.md
@@ -3,7 +3,7 @@ title: update_column_name method
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 70
+weight: 80
url: /aspose.cells.tables/listobjectcollection/update_column_name/
is_root: false
---
diff --git a/english/aspose.cells.vba/vbamodulecollection/_index.md b/english/aspose.cells.vba/vbamodulecollection/_index.md
index 008c013e85..8521b61a41 100644
--- a/english/aspose.cells.vba/vbamodulecollection/_index.md
+++ b/english/aspose.cells.vba/vbamodulecollection/_index.md
@@ -27,6 +27,8 @@ The VbaModuleCollection type exposes the following members:
| :- | :- |
| [add](/cells/python-net/aspose.cells.vba/vbamodulecollection/add/#aspose.cells.Worksheet) | Adds module for a worksheet. |
| [add](/cells/python-net/aspose.cells.vba/vbamodulecollection/add/#aspose.cells.vba.VbaModuleType-str) | Adds module. |
+| [get](/cells/python-net/aspose.cells.vba/vbamodulecollection/get/#int) | Gets [`VbaModule`](/cells/python-net/aspose.cells.vba/vbamodule) in the list by the index. |
+| [get](/cells/python-net/aspose.cells.vba/vbamodulecollection/get/#str) | Gets [`VbaModule`](/cells/python-net/aspose.cells.vba/vbamodule) in the list by the name. |
| [copy_to](/cells/python-net/aspose.cells.vba/vbamodulecollection/copy_to/#list) | Copies the entire array list to a compatible one-dimensional array list, starting at the beginning of the target array list. |
| [copy_to](/cells/python-net/aspose.cells.vba/vbamodulecollection/copy_to/#int-list-int-int) | Copies a range of elements from the array list to a compatible one-dimensional array list, starting at the specified index of the target array list. |
| [index_of](/cells/python-net/aspose.cells.vba/vbamodulecollection/index_of/#aspose.cells.vba.VbaModule-int) | Searches for the specified object and returns the zero-based index of the first occurrence within the range of elements in the array list that extends from the specified index to the last element. |
diff --git a/english/aspose.cells.vba/vbamodulecollection/capacity/_index.md b/english/aspose.cells.vba/vbamodulecollection/capacity/_index.md
index c5c24e5f0a..9cabab3a84 100644
--- a/english/aspose.cells.vba/vbamodulecollection/capacity/_index.md
+++ b/english/aspose.cells.vba/vbamodulecollection/capacity/_index.md
@@ -3,7 +3,7 @@ title: capacity property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 130
+weight: 140
url: /aspose.cells.vba/vbamodulecollection/capacity/
is_root: false
---
diff --git a/english/aspose.cells.vba/vbamodulecollection/get/_index.md b/english/aspose.cells.vba/vbamodulecollection/get/_index.md
new file mode 100644
index 0000000000..6e5058ebcc
--- /dev/null
+++ b/english/aspose.cells.vba/vbamodulecollection/get/_index.md
@@ -0,0 +1,59 @@
+---
+title: get method
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 70
+url: /aspose.cells.vba/vbamodulecollection/get/
+is_root: false
+---
+
+## get {#int}
+
+Gets [`VbaModule`](/cells/python-net/aspose.cells.vba/vbamodule) in the list by the index.
+
+
+### Returns
+
+
+
+
+
+```python
+def get(self, index):
+ ...
+```
+
+
+| Parameter | Type | Description |
+| :- | :- | :- |
+| index | int | The index. |
+
+
+## get {#str}
+
+Gets [`VbaModule`](/cells/python-net/aspose.cells.vba/vbamodule) in the list by the name.
+
+
+### Returns
+
+
+
+
+
+```python
+def get(self, name):
+ ...
+```
+
+
+| Parameter | Type | Description |
+| :- | :- | :- |
+| name | str | The name of module. |
+
+
+
+### See Also
+* module [`aspose.cells.vba`](../../)
+* class [`VbaModule`](/cells/python-net/aspose.cells.vba/vbamodule)
+* class [`VbaModuleCollection`](/cells/python-net/aspose.cells.vba/vbamodulecollection)
diff --git a/english/aspose.cells.vba/vbamodulecollection/get_designer_storage/_index.md b/english/aspose.cells.vba/vbamodulecollection/get_designer_storage/_index.md
index c992d8389c..6ffa40634e 100644
--- a/english/aspose.cells.vba/vbamodulecollection/get_designer_storage/_index.md
+++ b/english/aspose.cells.vba/vbamodulecollection/get_designer_storage/_index.md
@@ -3,7 +3,7 @@ title: get_designer_storage method
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 70
+weight: 80
url: /aspose.cells.vba/vbamodulecollection/get_designer_storage/
is_root: false
---
diff --git a/english/aspose.cells.vba/vbamodulecollection/index_of/_index.md b/english/aspose.cells.vba/vbamodulecollection/index_of/_index.md
index 355285334f..da37d73230 100644
--- a/english/aspose.cells.vba/vbamodulecollection/index_of/_index.md
+++ b/english/aspose.cells.vba/vbamodulecollection/index_of/_index.md
@@ -3,7 +3,7 @@ title: index_of method
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 80
+weight: 90
url: /aspose.cells.vba/vbamodulecollection/index_of/
is_root: false
---
diff --git a/english/aspose.cells.vba/vbamodulecollection/last_index_of/_index.md b/english/aspose.cells.vba/vbamodulecollection/last_index_of/_index.md
index 4b275c445c..98035059b6 100644
--- a/english/aspose.cells.vba/vbamodulecollection/last_index_of/_index.md
+++ b/english/aspose.cells.vba/vbamodulecollection/last_index_of/_index.md
@@ -3,7 +3,7 @@ title: last_index_of method
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 90
+weight: 100
url: /aspose.cells.vba/vbamodulecollection/last_index_of/
is_root: false
---
diff --git a/english/aspose.cells.vba/vbamodulecollection/remove_by_name/_index.md b/english/aspose.cells.vba/vbamodulecollection/remove_by_name/_index.md
index f9cf98cedb..d240507376 100644
--- a/english/aspose.cells.vba/vbamodulecollection/remove_by_name/_index.md
+++ b/english/aspose.cells.vba/vbamodulecollection/remove_by_name/_index.md
@@ -3,7 +3,7 @@ title: remove_by_name method
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 100
+weight: 110
url: /aspose.cells.vba/vbamodulecollection/remove_by_name/
is_root: false
---
diff --git a/english/aspose.cells.vba/vbamodulecollection/remove_by_worksheet/_index.md b/english/aspose.cells.vba/vbamodulecollection/remove_by_worksheet/_index.md
index f1c543fd7f..a8594376a5 100644
--- a/english/aspose.cells.vba/vbamodulecollection/remove_by_worksheet/_index.md
+++ b/english/aspose.cells.vba/vbamodulecollection/remove_by_worksheet/_index.md
@@ -3,7 +3,7 @@ title: remove_by_worksheet method
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 110
+weight: 120
url: /aspose.cells.vba/vbamodulecollection/remove_by_worksheet/
is_root: false
---
diff --git a/english/aspose.cells/_index.md b/english/aspose.cells/_index.md
index d7801f0fca..81d2b7bb0d 100644
--- a/english/aspose.cells/_index.md
+++ b/english/aspose.cells/_index.md
@@ -18,6 +18,7 @@ For example, [`Workbook`](/cells/python-net/aspose.cells/workbook) class is the
| [`AboveAverage`](/cells/python-net/aspose.cells/aboveaverage) | Describe the AboveAverage conditional formatting rule.
This conditional formatting rule highlights cells that
are above or below the average for all values in the range. |
| [`AbstractCalculationEngine`](/cells/python-net/aspose.cells/abstractcalculationengine) | Represents user's custom calculation engine to extend the default calculation engine of Aspose.Cells. |
| [`AbstractCalculationMonitor`](/cells/python-net/aspose.cells/abstractcalculationmonitor) | Monitor for user to track the progress of formula calculation. |
+| [`AbstractFormulaChangeMonitor`](/cells/python-net/aspose.cells/abstractformulachangemonitor) | Monitor for user to track the change of formulas during certain operations. |
| [`AbstractGlobalizationSettings`](/cells/python-net/aspose.cells/abstractglobalizationsettings) | Represents the globalization settings. |
| [`AbstractInterruptMonitor`](/cells/python-net/aspose.cells/abstractinterruptmonitor) | Monitor for interruption requests in all time-consuming operations. |
| [`AbstractTextLoadOptions`](/cells/python-net/aspose.cells/abstracttextloadoptions) | Common options for loading text values |
@@ -239,6 +240,7 @@ For example, [`Workbook`](/cells/python-net/aspose.cells/workbook) class is the
| [`ExceptionType`](/cells/python-net/aspose.cells/exceptiontype) | Represents custom exception type code. |
| [`ExternalLinkType`](/cells/python-net/aspose.cells/externallinktype) | Represents the type of external link. |
| [`FileFormatType`](/cells/python-net/aspose.cells/fileformattype) | Represents the file format types. |
+| [`FilterCategory`](/cells/python-net/aspose.cells/filtercategory) | Represents the category of the filter. |
| [`FilterOperatorType`](/cells/python-net/aspose.cells/filteroperatortype) | Custom Filter operator type. |
| [`FilterType`](/cells/python-net/aspose.cells/filtertype) | The filter type. |
| [`FontSchemeType`](/cells/python-net/aspose.cells/fontschemetype) | Represents the scheme type of the font. |
@@ -305,6 +307,6 @@ For example, [`Workbook`](/cells/python-net/aspose.cells/workbook) class is the
| [`ValidationType`](/cells/python-net/aspose.cells/validationtype) | Represents data validation type. |
| [`ViewType`](/cells/python-net/aspose.cells/viewtype) | Represents the view type of the worksheet. |
| [`VisibilityType`](/cells/python-net/aspose.cells/visibilitytype) | Represents the states for sheet visibility. |
-| [`WarningType`](/cells/python-net/aspose.cells/warningtype) | WaringType |
+| [`WarningType`](/cells/python-net/aspose.cells/warningtype) | |
diff --git a/english/aspose.cells/abstractformulachangemonitor/_index.md b/english/aspose.cells/abstractformulachangemonitor/_index.md
new file mode 100644
index 0000000000..7547cfde3e
--- /dev/null
+++ b/english/aspose.cells/abstractformulachangemonitor/_index.md
@@ -0,0 +1,33 @@
+---
+title: AbstractFormulaChangeMonitor class
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 40
+url: /aspose.cells/abstractformulachangemonitor/
+is_root: false
+---
+
+## AbstractFormulaChangeMonitor class
+
+Monitor for user to track the change of formulas during certain operations.
+
+
+
+The AbstractFormulaChangeMonitor type exposes the following members:
+
+### Methods
+| Method | Description |
+| :- | :- |
+| [on_cell_formula_changed](/cells/python-net/aspose.cells/abstractformulachangemonitor/on_cell_formula_changed/#int-int-int) | The event that will be triggered when the formula in a cell is changed. |
+
+
+
+### Remarks
+
+
+For example, while deleting/inserting range of cells,
+formulas of other cells may be changed because of the shift of references.
+
+### See Also
+* module [`aspose.cells`](..)
diff --git a/english/aspose.cells/abstractformulachangemonitor/on_cell_formula_changed/_index.md b/english/aspose.cells/abstractformulachangemonitor/on_cell_formula_changed/_index.md
new file mode 100644
index 0000000000..99d8054de5
--- /dev/null
+++ b/english/aspose.cells/abstractformulachangemonitor/on_cell_formula_changed/_index.md
@@ -0,0 +1,33 @@
+---
+title: on_cell_formula_changed method
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 20
+url: /aspose.cells/abstractformulachangemonitor/on_cell_formula_changed/
+is_root: false
+---
+
+## on_cell_formula_changed {#int-int-int}
+
+The event that will be triggered when the formula in a cell is changed.
+
+
+
+```python
+def on_cell_formula_changed(self, sheet_index, row_index, column_index):
+ ...
+```
+
+
+| Parameter | Type | Description |
+| :- | :- | :- |
+| sheet_index | int | The sheet index of the changed cell |
+| row_index | int | The row index of the changed cell |
+| column_index | int | The column index of the changed cell |
+
+
+
+### See Also
+* module [`aspose.cells`](../../)
+* class [`AbstractFormulaChangeMonitor`](/cells/python-net/aspose.cells/abstractformulachangemonitor)
diff --git a/english/aspose.cells/abstractglobalizationsettings/_index.md b/english/aspose.cells/abstractglobalizationsettings/_index.md
index fe5ec71ca6..dc1251245d 100644
--- a/english/aspose.cells/abstractglobalizationsettings/_index.md
+++ b/english/aspose.cells/abstractglobalizationsettings/_index.md
@@ -3,7 +3,7 @@ title: AbstractGlobalizationSettings class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 40
+weight: 50
url: /aspose.cells/abstractglobalizationsettings/
is_root: false
---
diff --git a/english/aspose.cells/abstractinterruptmonitor/_index.md b/english/aspose.cells/abstractinterruptmonitor/_index.md
index 900ef16165..0c2431ca15 100644
--- a/english/aspose.cells/abstractinterruptmonitor/_index.md
+++ b/english/aspose.cells/abstractinterruptmonitor/_index.md
@@ -3,7 +3,7 @@ title: AbstractInterruptMonitor class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 50
+weight: 60
url: /aspose.cells/abstractinterruptmonitor/
is_root: false
---
diff --git a/english/aspose.cells/abstracttextloadoptions/_index.md b/english/aspose.cells/abstracttextloadoptions/_index.md
index 8ffa5602c2..570ef86346 100644
--- a/english/aspose.cells/abstracttextloadoptions/_index.md
+++ b/english/aspose.cells/abstracttextloadoptions/_index.md
@@ -3,7 +3,7 @@ title: AbstractTextLoadOptions class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 60
+weight: 70
url: /aspose.cells/abstracttextloadoptions/
is_root: false
---
diff --git a/english/aspose.cells/accesscacheoptions/_index.md b/english/aspose.cells/accesscacheoptions/_index.md
index 7b238ae993..01d3b9dce0 100644
--- a/english/aspose.cells/accesscacheoptions/_index.md
+++ b/english/aspose.cells/accesscacheoptions/_index.md
@@ -3,7 +3,7 @@ title: AccessCacheOptions enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1870
+weight: 1880
url: /aspose.cells/accesscacheoptions/
is_root: false
---
diff --git a/english/aspose.cells/advancedfilter/_index.md b/english/aspose.cells/advancedfilter/_index.md
index 5276261feb..a629c8e8c5 100644
--- a/english/aspose.cells/advancedfilter/_index.md
+++ b/english/aspose.cells/advancedfilter/_index.md
@@ -3,7 +3,7 @@ title: AdvancedFilter class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 70
+weight: 80
url: /aspose.cells/advancedfilter/
is_root: false
---
diff --git a/english/aspose.cells/autofilltype/_index.md b/english/aspose.cells/autofilltype/_index.md
index 91ba731fc9..f5700fe3de 100644
--- a/english/aspose.cells/autofilltype/_index.md
+++ b/english/aspose.cells/autofilltype/_index.md
@@ -3,7 +3,7 @@ title: AutoFillType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1880
+weight: 1890
url: /aspose.cells/autofilltype/
is_root: false
---
diff --git a/english/aspose.cells/autofilter/_index.md b/english/aspose.cells/autofilter/_index.md
index 9d980358ec..bb516a8111 100644
--- a/english/aspose.cells/autofilter/_index.md
+++ b/english/aspose.cells/autofilter/_index.md
@@ -3,7 +3,7 @@ title: AutoFilter class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 80
+weight: 90
url: /aspose.cells/autofilter/
is_root: false
---
diff --git a/english/aspose.cells/autofitmergedcellstype/_index.md b/english/aspose.cells/autofitmergedcellstype/_index.md
index 072b65f4a7..c9ca7e63c6 100644
--- a/english/aspose.cells/autofitmergedcellstype/_index.md
+++ b/english/aspose.cells/autofitmergedcellstype/_index.md
@@ -3,7 +3,7 @@ title: AutoFitMergedCellsType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1890
+weight: 1900
url: /aspose.cells/autofitmergedcellstype/
is_root: false
---
diff --git a/english/aspose.cells/autofitteroptions/_index.md b/english/aspose.cells/autofitteroptions/_index.md
index 1078361388..a679680b40 100644
--- a/english/aspose.cells/autofitteroptions/_index.md
+++ b/english/aspose.cells/autofitteroptions/_index.md
@@ -3,7 +3,7 @@ title: AutoFitterOptions class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 90
+weight: 100
url: /aspose.cells/autofitteroptions/
is_root: false
---
diff --git a/english/aspose.cells/autofitwrappedtexttype/_index.md b/english/aspose.cells/autofitwrappedtexttype/_index.md
index 146eacbed8..4298e23376 100644
--- a/english/aspose.cells/autofitwrappedtexttype/_index.md
+++ b/english/aspose.cells/autofitwrappedtexttype/_index.md
@@ -3,7 +3,7 @@ title: AutoFitWrappedTextType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1900
+weight: 1910
url: /aspose.cells/autofitwrappedtexttype/
is_root: false
---
diff --git a/english/aspose.cells/backgroundtype/_index.md b/english/aspose.cells/backgroundtype/_index.md
index 6b1c7139a8..1510e33101 100644
--- a/english/aspose.cells/backgroundtype/_index.md
+++ b/english/aspose.cells/backgroundtype/_index.md
@@ -3,7 +3,7 @@ title: BackgroundType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1910
+weight: 1920
url: /aspose.cells/backgroundtype/
is_root: false
---
diff --git a/english/aspose.cells/border/_index.md b/english/aspose.cells/border/_index.md
index 353e5e7625..61aa19cff3 100644
--- a/english/aspose.cells/border/_index.md
+++ b/english/aspose.cells/border/_index.md
@@ -3,7 +3,7 @@ title: Border class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 100
+weight: 110
url: /aspose.cells/border/
is_root: false
---
diff --git a/english/aspose.cells/bordercollection/_index.md b/english/aspose.cells/bordercollection/_index.md
index 7589c764d4..ed6778e15a 100644
--- a/english/aspose.cells/bordercollection/_index.md
+++ b/english/aspose.cells/bordercollection/_index.md
@@ -3,7 +3,7 @@ title: BorderCollection class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 110
+weight: 120
url: /aspose.cells/bordercollection/
is_root: false
---
diff --git a/english/aspose.cells/bordertype/_index.md b/english/aspose.cells/bordertype/_index.md
index 0c0c5b0579..63f69e5449 100644
--- a/english/aspose.cells/bordertype/_index.md
+++ b/english/aspose.cells/bordertype/_index.md
@@ -3,7 +3,7 @@ title: BorderType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1920
+weight: 1930
url: /aspose.cells/bordertype/
is_root: false
---
diff --git a/english/aspose.cells/builtinstyletype/_index.md b/english/aspose.cells/builtinstyletype/_index.md
index 130cda4bbf..648d36abb3 100644
--- a/english/aspose.cells/builtinstyletype/_index.md
+++ b/english/aspose.cells/builtinstyletype/_index.md
@@ -3,7 +3,7 @@ title: BuiltinStyleType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1930
+weight: 1940
url: /aspose.cells/builtinstyletype/
is_root: false
---
diff --git a/english/aspose.cells/calcmodetype/_index.md b/english/aspose.cells/calcmodetype/_index.md
index 12a02cfdda..ca828583f4 100644
--- a/english/aspose.cells/calcmodetype/_index.md
+++ b/english/aspose.cells/calcmodetype/_index.md
@@ -3,7 +3,7 @@ title: CalcModeType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1940
+weight: 1950
url: /aspose.cells/calcmodetype/
is_root: false
---
diff --git a/english/aspose.cells/calculationcell/_index.md b/english/aspose.cells/calculationcell/_index.md
index 0f623ad2fd..58d3ad33e2 100644
--- a/english/aspose.cells/calculationcell/_index.md
+++ b/english/aspose.cells/calculationcell/_index.md
@@ -3,7 +3,7 @@ title: CalculationCell class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 120
+weight: 130
url: /aspose.cells/calculationcell/
is_root: false
---
diff --git a/english/aspose.cells/calculationdata/_index.md b/english/aspose.cells/calculationdata/_index.md
index 585728dbb9..131630e639 100644
--- a/english/aspose.cells/calculationdata/_index.md
+++ b/english/aspose.cells/calculationdata/_index.md
@@ -3,7 +3,7 @@ title: CalculationData class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 130
+weight: 140
url: /aspose.cells/calculationdata/
is_root: false
---
diff --git a/english/aspose.cells/calculationoptions/_index.md b/english/aspose.cells/calculationoptions/_index.md
index efe79f2688..cd268ede64 100644
--- a/english/aspose.cells/calculationoptions/_index.md
+++ b/english/aspose.cells/calculationoptions/_index.md
@@ -3,7 +3,7 @@ title: CalculationOptions class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 140
+weight: 150
url: /aspose.cells/calculationoptions/
is_root: false
---
diff --git a/english/aspose.cells/calculationoptions/linked_data_sources/_index.md b/english/aspose.cells/calculationoptions/linked_data_sources/_index.md
index 87db00c7cc..5092289b08 100644
--- a/english/aspose.cells/calculationoptions/linked_data_sources/_index.md
+++ b/english/aspose.cells/calculationoptions/linked_data_sources/_index.md
@@ -21,6 +21,10 @@ data sources for external links used in formulas to be calculated, especially th
used in INDIRECT function. For those external links used in INDIRECT function,
they are not taken as part of the external links of the workbook and cannot be updated
by [`Workbook.update_linked_data_source`](/cells/python-net/aspose.cells/workbook/update_linked_data_source).
+The match of those workbooks with external links is determined by [`Workbook.file_name`](/cells/python-net/aspose.cells/workbook#file_name)
+and [`ExternalLink.data_source`](/cells/python-net/aspose.cells/externallink#data_source). So please make sure [`Workbook.file_name`](/cells/python-net/aspose.cells/workbook#file_name) has
+been specified with the proper value(generally it should be same with corresponding
+[`ExternalLink.data_source`](/cells/python-net/aspose.cells/externallink#data_source)) for every workbook so they can be linked as expected.
### Definition:
```python
@property
diff --git a/english/aspose.cells/calculationprecisionstrategy/_index.md b/english/aspose.cells/calculationprecisionstrategy/_index.md
index 2ba77779ec..3d826914e8 100644
--- a/english/aspose.cells/calculationprecisionstrategy/_index.md
+++ b/english/aspose.cells/calculationprecisionstrategy/_index.md
@@ -3,7 +3,7 @@ title: CalculationPrecisionStrategy enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1950
+weight: 1960
url: /aspose.cells/calculationprecisionstrategy/
is_root: false
---
diff --git a/english/aspose.cells/cell/_index.md b/english/aspose.cells/cell/_index.md
index b875977dc8..5f88872e8a 100644
--- a/english/aspose.cells/cell/_index.md
+++ b/english/aspose.cells/cell/_index.md
@@ -3,7 +3,7 @@ title: Cell class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 150
+weight: 160
url: /aspose.cells/cell/
is_root: false
---
diff --git a/english/aspose.cells/cellarea/_index.md b/english/aspose.cells/cellarea/_index.md
index c2decae61a..71f2d90554 100644
--- a/english/aspose.cells/cellarea/_index.md
+++ b/english/aspose.cells/cellarea/_index.md
@@ -3,7 +3,7 @@ title: CellArea class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 160
+weight: 170
url: /aspose.cells/cellarea/
is_root: false
---
diff --git a/english/aspose.cells/cellbordertype/_index.md b/english/aspose.cells/cellbordertype/_index.md
index fdbf0e6807..b65d8eba87 100644
--- a/english/aspose.cells/cellbordertype/_index.md
+++ b/english/aspose.cells/cellbordertype/_index.md
@@ -3,7 +3,7 @@ title: CellBorderType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1960
+weight: 1970
url: /aspose.cells/cellbordertype/
is_root: false
---
diff --git a/english/aspose.cells/cellrichvalue/_index.md b/english/aspose.cells/cellrichvalue/_index.md
index 896d48baf3..05875dc992 100644
--- a/english/aspose.cells/cellrichvalue/_index.md
+++ b/english/aspose.cells/cellrichvalue/_index.md
@@ -3,7 +3,7 @@ title: CellRichValue class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 170
+weight: 180
url: /aspose.cells/cellrichvalue/
is_root: false
---
diff --git a/english/aspose.cells/cells/_index.md b/english/aspose.cells/cells/_index.md
index d43c09f2d9..404dfe8085 100644
--- a/english/aspose.cells/cells/_index.md
+++ b/english/aspose.cells/cells/_index.md
@@ -3,7 +3,7 @@ title: Cells class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 210
+weight: 220
url: /aspose.cells/cells/
is_root: false
---
@@ -92,16 +92,20 @@ The Cells type exposes the following members:
| [group_rows](/cells/python-net/aspose.cells/cells/group_rows/#int-int) | Groups rows. |
| [delete_column](/cells/python-net/aspose.cells/cells/delete_column/#int-bool) | Deletes a column. |
| [delete_column](/cells/python-net/aspose.cells/cells/delete_column/#int) | Deletes a column. |
+| [delete_columns](/cells/python-net/aspose.cells/cells/delete_columns/#int-int-bool) | Deletes several columns. |
+| [delete_columns](/cells/python-net/aspose.cells/cells/delete_columns/#int-int-aspose.cells.DeleteOptions) | Deletes several columns. |
| [delete_row](/cells/python-net/aspose.cells/cells/delete_row/#int) | Deletes a row. |
| [delete_row](/cells/python-net/aspose.cells/cells/delete_row/#int-bool) | Deletes a row. |
-| [delete_rows](/cells/python-net/aspose.cells/cells/delete_rows/#int-int) | Deletes several rows. |
+| [delete_rows](/cells/python-net/aspose.cells/cells/delete_rows/#int-int) | Deletes multiple rows. |
| [delete_rows](/cells/python-net/aspose.cells/cells/delete_rows/#int-int-bool) | Deletes multiple rows in the worksheet. |
+| [delete_rows](/cells/python-net/aspose.cells/cells/delete_rows/#int-int-aspose.cells.DeleteOptions) | Deletes multiple rows in the worksheet. |
| [delete_blank_columns](/cells/python-net/aspose.cells/cells/delete_blank_columns/#) | Delete all blank columns which do not contain any data. |
| [delete_blank_columns](/cells/python-net/aspose.cells/cells/delete_blank_columns/#aspose.cells.DeleteOptions) | Delete all blank columns which do not contain any data. |
| [delete_blank_rows](/cells/python-net/aspose.cells/cells/delete_blank_rows/#) | Delete all blank rows which do not contain any data or other object. |
| [delete_blank_rows](/cells/python-net/aspose.cells/cells/delete_blank_rows/#aspose.cells.DeleteOptions) | Delete all blank rows which do not contain any data or some special objects such as visible comment, pivot table. |
| [insert_columns](/cells/python-net/aspose.cells/cells/insert_columns/#int-int) | Inserts some columns into the worksheet. |
| [insert_columns](/cells/python-net/aspose.cells/cells/insert_columns/#int-int-bool) | Inserts some columns into the worksheet. |
+| [insert_columns](/cells/python-net/aspose.cells/cells/insert_columns/#int-int-aspose.cells.InsertOptions) | Inserts some columns into the worksheet. |
| [insert_column](/cells/python-net/aspose.cells/cells/insert_column/#int-bool) | Inserts a new column into the worksheet. |
| [insert_column](/cells/python-net/aspose.cells/cells/insert_column/#int) | Inserts a new column into the worksheet. |
| [insert_rows](/cells/python-net/aspose.cells/cells/insert_rows/#int-int-bool) | Inserts multiple rows into the worksheet. |
@@ -182,7 +186,6 @@ The Cells type exposes the following members:
| [show_group_detail](/cells/python-net/aspose.cells/cells/show_group_detail/#bool-int) | Expands the grouped rows/columns. |
| [hide_group_detail](/cells/python-net/aspose.cells/cells/hide_group_detail/#bool-int) | Collapses the grouped rows/columns. |
| [ungroup_columns](/cells/python-net/aspose.cells/cells/ungroup_columns/#int-int) | Ungroups columns. |
-| [delete_columns](/cells/python-net/aspose.cells/cells/delete_columns/#int-int-bool) | Deletes several columns. |
| [is_deleting_range_enabled](/cells/python-net/aspose.cells/cells/is_deleting_range_enabled/#int-int-int-int) | Check whether the range could be deleted. |
| [is_blank_column](/cells/python-net/aspose.cells/cells/is_blank_column/#int) | Checks whether given column is blank(does not contain any data). |
| [insert_row](/cells/python-net/aspose.cells/cells/insert_row/#int) | Inserts a new row into the worksheet. |
diff --git a/english/aspose.cells/cells/delete_columns/_index.md b/english/aspose.cells/cells/delete_columns/_index.md
index 053a8fa64b..47c14775e9 100644
--- a/english/aspose.cells/cells/delete_columns/_index.md
+++ b/english/aspose.cells/cells/delete_columns/_index.md
@@ -27,6 +27,25 @@ def delete_columns(self, column_index, total_columns, update_reference):
| update_reference | bool | Indicates whether update references in other worksheets. |
+## delete_columns {#int-int-aspose.cells.DeleteOptions}
+
+Deletes several columns.
+
+
+
+```python
+def delete_columns(self, column_index, total_columns, options):
+ ...
+```
+
+
+| Parameter | Type | Description |
+| :- | :- | :- |
+| column_index | int | Index of the first column to be deleted. |
+| total_columns | int | Count of columns to be deleted. |
+| options | [`DeleteOptions`](/cells/python-net/aspose.cells/deleteoptions) | Options for the deleting operation |
+
+
### See Also
* module [`aspose.cells`](../../)
diff --git a/english/aspose.cells/cells/delete_rows/_index.md b/english/aspose.cells/cells/delete_rows/_index.md
index d0fca412c5..c07bdd721d 100644
--- a/english/aspose.cells/cells/delete_rows/_index.md
+++ b/english/aspose.cells/cells/delete_rows/_index.md
@@ -10,7 +10,7 @@ is_root: false
## delete_rows {#int-int}
-Deletes several rows.
+Deletes multiple rows.
@@ -54,6 +54,30 @@ def delete_rows(self, row_index, total_rows, update_reference):
| update_reference | bool | Indicates whether update references in other worksheets. |
+## delete_rows {#int-int-aspose.cells.DeleteOptions}
+
+Deletes multiple rows in the worksheet.
+
+
+### Returns
+
+
+
+
+
+```python
+def delete_rows(self, row_index, total_rows, options):
+ ...
+```
+
+
+| Parameter | Type | Description |
+| :- | :- | :- |
+| row_index | int | Index of the first row to be deleted. |
+| total_rows | int | Count of rows to be deleted. |
+| options | [`DeleteOptions`](/cells/python-net/aspose.cells/deleteoptions) | Options for the deleting operation |
+
+
### See Also
* module [`aspose.cells`](../../)
diff --git a/english/aspose.cells/cells/insert_columns/_index.md b/english/aspose.cells/cells/insert_columns/_index.md
index d12ee45163..589b58d246 100644
--- a/english/aspose.cells/cells/insert_columns/_index.md
+++ b/english/aspose.cells/cells/insert_columns/_index.md
@@ -45,6 +45,25 @@ def insert_columns(self, column_index, total_columns, update_reference):
| update_reference | bool | Indicates if references in other worksheets will be updated. |
+## insert_columns {#int-int-aspose.cells.InsertOptions}
+
+Inserts some columns into the worksheet.
+
+
+
+```python
+def insert_columns(self, column_index, total_columns, options):
+ ...
+```
+
+
+| Parameter | Type | Description |
+| :- | :- | :- |
+| column_index | int | Column index. |
+| total_columns | int | The number of columns. |
+| options | [`InsertOptions`](/cells/python-net/aspose.cells/insertoptions) | The options for inserting operation. |
+
+
### See Also
* module [`aspose.cells`](../../)
diff --git a/english/aspose.cells/cells/insert_rows/_index.md b/english/aspose.cells/cells/insert_rows/_index.md
index 59906ff8aa..542fe7c948 100644
--- a/english/aspose.cells/cells/insert_rows/_index.md
+++ b/english/aspose.cells/cells/insert_rows/_index.md
@@ -61,7 +61,7 @@ def insert_rows(self, row_index, total_rows, options):
| :- | :- | :- |
| row_index | int | Row index. |
| total_rows | int | Number of rows to be inserted. |
-| options | [`InsertOptions`](/cells/python-net/aspose.cells/insertoptions) | Indicates if references in other worksheets will be updated. |
+| options | [`InsertOptions`](/cells/python-net/aspose.cells/insertoptions) | Options for inserting operation. |
diff --git a/english/aspose.cells/cellscolor/_index.md b/english/aspose.cells/cellscolor/_index.md
index 7254511169..7105891859 100644
--- a/english/aspose.cells/cellscolor/_index.md
+++ b/english/aspose.cells/cellscolor/_index.md
@@ -3,7 +3,7 @@ title: CellsColor class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 220
+weight: 230
url: /aspose.cells/cellscolor/
is_root: false
---
diff --git a/english/aspose.cells/cellsdatatablefactory/_index.md b/english/aspose.cells/cellsdatatablefactory/_index.md
index 38a9788d01..4141facee0 100644
--- a/english/aspose.cells/cellsdatatablefactory/_index.md
+++ b/english/aspose.cells/cellsdatatablefactory/_index.md
@@ -3,7 +3,7 @@ title: CellsDataTableFactory class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 230
+weight: 240
url: /aspose.cells/cellsdatatablefactory/
is_root: false
---
diff --git a/english/aspose.cells/cellsexception/_index.md b/english/aspose.cells/cellsexception/_index.md
index d387c3056a..d3b9d838b3 100644
--- a/english/aspose.cells/cellsexception/_index.md
+++ b/english/aspose.cells/cellsexception/_index.md
@@ -3,7 +3,7 @@ title: CellsException class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 240
+weight: 250
url: /aspose.cells/cellsexception/
is_root: false
---
diff --git a/english/aspose.cells/cellsfactory/_index.md b/english/aspose.cells/cellsfactory/_index.md
index 7c31365274..cd4b19abf4 100644
--- a/english/aspose.cells/cellsfactory/_index.md
+++ b/english/aspose.cells/cellsfactory/_index.md
@@ -3,7 +3,7 @@ title: CellsFactory class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 250
+weight: 260
url: /aspose.cells/cellsfactory/
is_root: false
---
diff --git a/english/aspose.cells/cellshelper/_index.md b/english/aspose.cells/cellshelper/_index.md
index 78b9cf9041..f11d3de6c6 100644
--- a/english/aspose.cells/cellshelper/_index.md
+++ b/english/aspose.cells/cellshelper/_index.md
@@ -3,7 +3,7 @@ title: CellsHelper class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 260
+weight: 270
url: /aspose.cells/cellshelper/
is_root: false
---
diff --git a/english/aspose.cells/cellshelper/alt_start_path/_index.md b/english/aspose.cells/cellshelper/alt_start_path/_index.md
index b37f85f057..3c4f09041b 100644
--- a/english/aspose.cells/cellshelper/alt_start_path/_index.md
+++ b/english/aspose.cells/cellshelper/alt_start_path/_index.md
@@ -12,15 +12,6 @@ is_root: false
Gets or sets the alternate startup path, which is referred to by some external formula references.
-### Definition:
-```python
-@property
-def alt_start_path(self):
- ...
-@alt_start_path.setter
-def alt_start_path(self, value):
- ...
-```
### See Also
* module [`aspose.cells`](../../)
diff --git a/english/aspose.cells/cellshelper/custom_implementation_factory/_index.md b/english/aspose.cells/cellshelper/custom_implementation_factory/_index.md
index fcf1bc5e86..b6e9c73008 100644
--- a/english/aspose.cells/cellshelper/custom_implementation_factory/_index.md
+++ b/english/aspose.cells/cellshelper/custom_implementation_factory/_index.md
@@ -12,17 +12,7 @@ is_root: false
Gets or sets the factory for creating instances with special implementation.
-### Definition:
-```python
-@property
-def custom_implementation_factory(self):
- ...
-@custom_implementation_factory.setter
-def custom_implementation_factory(self, value):
- ...
-```
### See Also
* module [`aspose.cells`](../../)
* class [`CellsHelper`](/cells/python-net/aspose.cells/cellshelper)
-* class [`CustomImplementationFactory`](/cells/python-net/aspose.cells/customimplementationfactory)
diff --git a/english/aspose.cells/cellshelper/dpi/_index.md b/english/aspose.cells/cellshelper/dpi/_index.md
index 075c586c33..31ddb436b3 100644
--- a/english/aspose.cells/cellshelper/dpi/_index.md
+++ b/english/aspose.cells/cellshelper/dpi/_index.md
@@ -17,15 +17,6 @@ Gets the DPI of the machine.
-### Definition:
-```python
-@property
-def dpi(self):
- ...
-@dpi.setter
-def dpi(self, value):
- ...
-```
### See Also
* module [`aspose.cells`](../../)
diff --git a/english/aspose.cells/cellshelper/is_cloud_platform/_index.md b/english/aspose.cells/cellshelper/is_cloud_platform/_index.md
index 392f0c8df9..2bb08abd3b 100644
--- a/english/aspose.cells/cellshelper/is_cloud_platform/_index.md
+++ b/english/aspose.cells/cellshelper/is_cloud_platform/_index.md
@@ -12,15 +12,6 @@ is_root: false
Please set this property True when running on a cloud platform, such as: Azure, AWSLambda, etc,
-### Definition:
-```python
-@property
-def is_cloud_platform(self):
- ...
-@is_cloud_platform.setter
-def is_cloud_platform(self, value):
- ...
-```
### See Also
* module [`aspose.cells`](../../)
diff --git a/english/aspose.cells/cellshelper/library_path/_index.md b/english/aspose.cells/cellshelper/library_path/_index.md
index 4c647e3e4b..84bc622f08 100644
--- a/english/aspose.cells/cellshelper/library_path/_index.md
+++ b/english/aspose.cells/cellshelper/library_path/_index.md
@@ -12,15 +12,6 @@ is_root: false
Gets or sets the library path which is referred to by some external formula references.
-### Definition:
-```python
-@property
-def library_path(self):
- ...
-@library_path.setter
-def library_path(self, value):
- ...
-```
### See Also
* module [`aspose.cells`](../../)
diff --git a/english/aspose.cells/cellshelper/significant_digits/_index.md b/english/aspose.cells/cellshelper/significant_digits/_index.md
index a30541d624..37dc4684a5 100644
--- a/english/aspose.cells/cellshelper/significant_digits/_index.md
+++ b/english/aspose.cells/cellshelper/significant_digits/_index.md
@@ -18,15 +18,6 @@ The default value is 17.
Only could be 15 or 17 now.
-### Definition:
-```python
-@property
-def significant_digits(self):
- ...
-@significant_digits.setter
-def significant_digits(self, value):
- ...
-```
### See Also
* module [`aspose.cells`](../../)
diff --git a/english/aspose.cells/cellshelper/startup_path/_index.md b/english/aspose.cells/cellshelper/startup_path/_index.md
index d57800c063..6e3272c60c 100644
--- a/english/aspose.cells/cellshelper/startup_path/_index.md
+++ b/english/aspose.cells/cellshelper/startup_path/_index.md
@@ -12,15 +12,6 @@ is_root: false
Gets or sets the startup path, which is referred to by some external formula references.
-### Definition:
-```python
-@property
-def startup_path(self):
- ...
-@startup_path.setter
-def startup_path(self, value):
- ...
-```
### See Also
* module [`aspose.cells`](../../)
diff --git a/english/aspose.cells/cellsunittype/_index.md b/english/aspose.cells/cellsunittype/_index.md
index b45c252cc8..0ae27d3e3f 100644
--- a/english/aspose.cells/cellsunittype/_index.md
+++ b/english/aspose.cells/cellsunittype/_index.md
@@ -3,7 +3,7 @@ title: CellsUnitType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1990
+weight: 2000
url: /aspose.cells/cellsunittype/
is_root: false
---
diff --git a/english/aspose.cells/cellvalue/_index.md b/english/aspose.cells/cellvalue/_index.md
index 1954052d5e..55f3ce4320 100644
--- a/english/aspose.cells/cellvalue/_index.md
+++ b/english/aspose.cells/cellvalue/_index.md
@@ -3,7 +3,7 @@ title: CellValue class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 180
+weight: 190
url: /aspose.cells/cellvalue/
is_root: false
---
diff --git a/english/aspose.cells/cellvalueformatstrategy/_index.md b/english/aspose.cells/cellvalueformatstrategy/_index.md
index fd69a2faf5..3d48217aac 100644
--- a/english/aspose.cells/cellvalueformatstrategy/_index.md
+++ b/english/aspose.cells/cellvalueformatstrategy/_index.md
@@ -3,7 +3,7 @@ title: CellValueFormatStrategy enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1970
+weight: 1980
url: /aspose.cells/cellvalueformatstrategy/
is_root: false
---
diff --git a/english/aspose.cells/cellvaluetype/_index.md b/english/aspose.cells/cellvaluetype/_index.md
index acba094711..c8a0df2e08 100644
--- a/english/aspose.cells/cellvaluetype/_index.md
+++ b/english/aspose.cells/cellvaluetype/_index.md
@@ -3,7 +3,7 @@ title: CellValueType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1980
+weight: 1990
url: /aspose.cells/cellvaluetype/
is_root: false
---
diff --git a/english/aspose.cells/cellwatch/_index.md b/english/aspose.cells/cellwatch/_index.md
index 2f33cc83d2..e0ea7bef9c 100644
--- a/english/aspose.cells/cellwatch/_index.md
+++ b/english/aspose.cells/cellwatch/_index.md
@@ -3,7 +3,7 @@ title: CellWatch class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 190
+weight: 200
url: /aspose.cells/cellwatch/
is_root: false
---
diff --git a/english/aspose.cells/cellwatchcollection/_index.md b/english/aspose.cells/cellwatchcollection/_index.md
index bca4101554..e603f279b5 100644
--- a/english/aspose.cells/cellwatchcollection/_index.md
+++ b/english/aspose.cells/cellwatchcollection/_index.md
@@ -3,7 +3,7 @@ title: CellWatchCollection class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 200
+weight: 210
url: /aspose.cells/cellwatchcollection/
is_root: false
---
diff --git a/english/aspose.cells/colorfilter/_index.md b/english/aspose.cells/colorfilter/_index.md
index 46db2d23a7..8f76b977df 100644
--- a/english/aspose.cells/colorfilter/_index.md
+++ b/english/aspose.cells/colorfilter/_index.md
@@ -3,7 +3,7 @@ title: ColorFilter class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 270
+weight: 280
url: /aspose.cells/colorfilter/
is_root: false
---
diff --git a/english/aspose.cells/colorscale/_index.md b/english/aspose.cells/colorscale/_index.md
index ac79543d5a..0730145c63 100644
--- a/english/aspose.cells/colorscale/_index.md
+++ b/english/aspose.cells/colorscale/_index.md
@@ -3,7 +3,7 @@ title: ColorScale class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 280
+weight: 290
url: /aspose.cells/colorscale/
is_root: false
---
diff --git a/english/aspose.cells/colortype/_index.md b/english/aspose.cells/colortype/_index.md
index a1498a1125..572725ab5c 100644
--- a/english/aspose.cells/colortype/_index.md
+++ b/english/aspose.cells/colortype/_index.md
@@ -3,7 +3,7 @@ title: ColorType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2000
+weight: 2010
url: /aspose.cells/colortype/
is_root: false
---
diff --git a/english/aspose.cells/column/_index.md b/english/aspose.cells/column/_index.md
index 479cd7d085..4be8370af8 100644
--- a/english/aspose.cells/column/_index.md
+++ b/english/aspose.cells/column/_index.md
@@ -3,7 +3,7 @@ title: Column class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 290
+weight: 300
url: /aspose.cells/column/
is_root: false
---
diff --git a/english/aspose.cells/columncollection/_index.md b/english/aspose.cells/columncollection/_index.md
index 8b07e513c6..24c86f83be 100644
--- a/english/aspose.cells/columncollection/_index.md
+++ b/english/aspose.cells/columncollection/_index.md
@@ -3,7 +3,7 @@ title: ColumnCollection class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 300
+weight: 310
url: /aspose.cells/columncollection/
is_root: false
---
diff --git a/english/aspose.cells/comment/_index.md b/english/aspose.cells/comment/_index.md
index 180fad6e86..58967ddb8b 100644
--- a/english/aspose.cells/comment/_index.md
+++ b/english/aspose.cells/comment/_index.md
@@ -3,7 +3,7 @@ title: Comment class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 310
+weight: 320
url: /aspose.cells/comment/
is_root: false
---
@@ -51,5 +51,28 @@ The Comment type exposes the following members:
+### Example
+
+
+```python
+from aspose.cells import Workbook
+
+workbook = Workbook()
+comments = workbook.worksheets[0].comments
+# Add comment to cell A1
+commentIndex1 = comments.add(0, 0)
+comment1 = comments[commentIndex1]
+comment1.note = "First note."
+comment1.font.name = "Times New Roman"
+# Add comment to cell B2
+comments.add("B2")
+comment2 = comments.get("B2")
+comment2.note = "Second note."
+# do your business
+# Save the excel file.
+workbook.save("exmaple.xlsx")
+
+```
+
### See Also
* module [`aspose.cells`](..)
diff --git a/english/aspose.cells/commentcollection/_index.md b/english/aspose.cells/commentcollection/_index.md
index 20b9872568..f5647d5174 100644
--- a/english/aspose.cells/commentcollection/_index.md
+++ b/english/aspose.cells/commentcollection/_index.md
@@ -3,7 +3,7 @@ title: CommentCollection class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 320
+weight: 330
url: /aspose.cells/commentcollection/
is_root: false
---
@@ -31,6 +31,9 @@ The CommentCollection type exposes the following members:
| [get_threaded_comments](/cells/python-net/aspose.cells/commentcollection/get_threaded_comments/#str) | Gets the threaded comments by cell name. |
| [add](/cells/python-net/aspose.cells/commentcollection/add/#int-int) | Adds a comment to the collection. |
| [add](/cells/python-net/aspose.cells/commentcollection/add/#str) | Adds a comment to the collection. |
+| [get](/cells/python-net/aspose.cells/commentcollection/get/#int-int) | Add API for Python Via .Net.since this[int, int] is unsupported |
+| [get](/cells/python-net/aspose.cells/commentcollection/get/#int) | Gets the [`Comment`](/cells/python-net/aspose.cells/comment) element at the specified index. |
+| [get](/cells/python-net/aspose.cells/commentcollection/get/#str) | Gets the [`Comment`](/cells/python-net/aspose.cells/comment) element at the specified cell. |
| [remove_at](/cells/python-net/aspose.cells/commentcollection/remove_at/#str) | Removes the comment of the specific cell. |
| [remove_at](/cells/python-net/aspose.cells/commentcollection/remove_at/#int-int) | Removes the comment of the specific cell. |
| [copy_to](/cells/python-net/aspose.cells/commentcollection/copy_to/#list) | Copies the entire array list to a compatible one-dimensional array list, starting at the beginning of the target array list. |
@@ -40,7 +43,6 @@ The CommentCollection type exposes the following members:
| [last_index_of](/cells/python-net/aspose.cells/commentcollection/last_index_of/#aspose.cells.Comment) | Searches for the specified object and returns the zero-based index of the last occurrence within the entire array list. |
| [last_index_of](/cells/python-net/aspose.cells/commentcollection/last_index_of/#aspose.cells.Comment-int) | Searches for the specified object and returns the zero-based index of the last occurrence within the range of elements in the array list that extends from the first element to the specified index. |
| [last_index_of](/cells/python-net/aspose.cells/commentcollection/last_index_of/#aspose.cells.Comment-int-int) | Searches for the specified object and returns the zero-based index of the last occurrence within the range of elements in the array list that contains the specified number of elements and ends at the specified index. |
-| [get](/cells/python-net/aspose.cells/commentcollection/get/#int-int) | Add API for Python Via .Net.since this[int, int] is unsupported |
| [binary_search](/cells/python-net/aspose.cells/commentcollection/binary_search/#aspose.cells.Comment) | Searches the entire sorted array list for an element using the default comparer and returns the zero-based index of the element. |
diff --git a/english/aspose.cells/commentcollection/get/_index.md b/english/aspose.cells/commentcollection/get/_index.md
index f3ef5f7676..dfae1c962b 100644
--- a/english/aspose.cells/commentcollection/get/_index.md
+++ b/english/aspose.cells/commentcollection/get/_index.md
@@ -8,6 +8,50 @@ url: /aspose.cells/commentcollection/get/
is_root: false
---
+## get {#int}
+
+Gets the [`Comment`](/cells/python-net/aspose.cells/comment) element at the specified index.
+
+
+### Returns
+
+
+The element at the specified index.
+
+
+```python
+def get(self, index):
+ ...
+```
+
+
+| Parameter | Type | Description |
+| :- | :- | :- |
+| index | int | The zero based index of the element. |
+
+
+## get {#str}
+
+Gets the [`Comment`](/cells/python-net/aspose.cells/comment) element at the specified cell.
+
+
+### Returns
+
+
+The element at the specified cell.
+
+
+```python
+def get(self, cell_name):
+ ...
+```
+
+
+| Parameter | Type | Description |
+| :- | :- | :- |
+| cell_name | str | Cell name. |
+
+
## get {#int-int}
Add API for Python Via .Net.since this[int, int] is unsupported
@@ -34,4 +78,5 @@ def get(self, row, column):
### See Also
* module [`aspose.cells`](../../)
+* class [`Comment`](/cells/python-net/aspose.cells/comment)
* class [`CommentCollection`](/cells/python-net/aspose.cells/commentcollection)
diff --git a/english/aspose.cells/conditionalformattingcollection/_index.md b/english/aspose.cells/conditionalformattingcollection/_index.md
index f5b7b0551b..0f1f333c01 100644
--- a/english/aspose.cells/conditionalformattingcollection/_index.md
+++ b/english/aspose.cells/conditionalformattingcollection/_index.md
@@ -3,7 +3,7 @@ title: ConditionalFormattingCollection class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 330
+weight: 340
url: /aspose.cells/conditionalformattingcollection/
is_root: false
---
diff --git a/english/aspose.cells/conditionalformattingicon/_index.md b/english/aspose.cells/conditionalformattingicon/_index.md
index dcb22337a5..6192104c05 100644
--- a/english/aspose.cells/conditionalformattingicon/_index.md
+++ b/english/aspose.cells/conditionalformattingicon/_index.md
@@ -3,7 +3,7 @@ title: ConditionalFormattingIcon class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 340
+weight: 350
url: /aspose.cells/conditionalformattingicon/
is_root: false
---
diff --git a/english/aspose.cells/conditionalformattingiconcollection/_index.md b/english/aspose.cells/conditionalformattingiconcollection/_index.md
index b7821690fa..f9672cf871 100644
--- a/english/aspose.cells/conditionalformattingiconcollection/_index.md
+++ b/english/aspose.cells/conditionalformattingiconcollection/_index.md
@@ -3,7 +3,7 @@ title: ConditionalFormattingIconCollection class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 350
+weight: 360
url: /aspose.cells/conditionalformattingiconcollection/
is_root: false
---
diff --git a/english/aspose.cells/conditionalformattingresult/_index.md b/english/aspose.cells/conditionalformattingresult/_index.md
index 9747df9a2a..7c0d0862d8 100644
--- a/english/aspose.cells/conditionalformattingresult/_index.md
+++ b/english/aspose.cells/conditionalformattingresult/_index.md
@@ -3,7 +3,7 @@ title: ConditionalFormattingResult class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 360
+weight: 370
url: /aspose.cells/conditionalformattingresult/
is_root: false
---
diff --git a/english/aspose.cells/conditionalformattingvalue/_index.md b/english/aspose.cells/conditionalformattingvalue/_index.md
index 1ad4fba752..efed1c8399 100644
--- a/english/aspose.cells/conditionalformattingvalue/_index.md
+++ b/english/aspose.cells/conditionalformattingvalue/_index.md
@@ -3,7 +3,7 @@ title: ConditionalFormattingValue class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 370
+weight: 380
url: /aspose.cells/conditionalformattingvalue/
is_root: false
---
diff --git a/english/aspose.cells/conditionalformattingvaluecollection/_index.md b/english/aspose.cells/conditionalformattingvaluecollection/_index.md
index aa5bc32f21..19827fa49a 100644
--- a/english/aspose.cells/conditionalformattingvaluecollection/_index.md
+++ b/english/aspose.cells/conditionalformattingvaluecollection/_index.md
@@ -3,7 +3,7 @@ title: ConditionalFormattingValueCollection class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 380
+weight: 390
url: /aspose.cells/conditionalformattingvaluecollection/
is_root: false
---
diff --git a/english/aspose.cells/consolidationfunction/_index.md b/english/aspose.cells/consolidationfunction/_index.md
index a74a5afb23..3639fd550e 100644
--- a/english/aspose.cells/consolidationfunction/_index.md
+++ b/english/aspose.cells/consolidationfunction/_index.md
@@ -3,7 +3,7 @@ title: ConsolidationFunction enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2010
+weight: 2020
url: /aspose.cells/consolidationfunction/
is_root: false
---
diff --git a/english/aspose.cells/copyformattype/_index.md b/english/aspose.cells/copyformattype/_index.md
index 9decc67420..cd3eef485f 100644
--- a/english/aspose.cells/copyformattype/_index.md
+++ b/english/aspose.cells/copyformattype/_index.md
@@ -3,7 +3,7 @@ title: CopyFormatType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2020
+weight: 2030
url: /aspose.cells/copyformattype/
is_root: false
---
diff --git a/english/aspose.cells/copyoptions/_index.md b/english/aspose.cells/copyoptions/_index.md
index bf5c803cf5..8c386fb87c 100644
--- a/english/aspose.cells/copyoptions/_index.md
+++ b/english/aspose.cells/copyoptions/_index.md
@@ -3,7 +3,7 @@ title: CopyOptions class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 390
+weight: 400
url: /aspose.cells/copyoptions/
is_root: false
---
diff --git a/english/aspose.cells/countrycode/_index.md b/english/aspose.cells/countrycode/_index.md
index 0b03d00ef4..62a6361f5f 100644
--- a/english/aspose.cells/countrycode/_index.md
+++ b/english/aspose.cells/countrycode/_index.md
@@ -3,7 +3,7 @@ title: CountryCode enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2030
+weight: 2040
url: /aspose.cells/countrycode/
is_root: false
---
diff --git a/english/aspose.cells/customfilter/_index.md b/english/aspose.cells/customfilter/_index.md
index 3d93b78982..ec09c966ec 100644
--- a/english/aspose.cells/customfilter/_index.md
+++ b/english/aspose.cells/customfilter/_index.md
@@ -3,7 +3,7 @@ title: CustomFilter class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 400
+weight: 410
url: /aspose.cells/customfilter/
is_root: false
---
diff --git a/english/aspose.cells/customfiltercollection/_index.md b/english/aspose.cells/customfiltercollection/_index.md
index 5e621c2f3b..83f976356e 100644
--- a/english/aspose.cells/customfiltercollection/_index.md
+++ b/english/aspose.cells/customfiltercollection/_index.md
@@ -3,7 +3,7 @@ title: CustomFilterCollection class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 410
+weight: 420
url: /aspose.cells/customfiltercollection/
is_root: false
---
diff --git a/english/aspose.cells/customfunctiondefinition/_index.md b/english/aspose.cells/customfunctiondefinition/_index.md
index e627b76dff..d26aa9f8d1 100644
--- a/english/aspose.cells/customfunctiondefinition/_index.md
+++ b/english/aspose.cells/customfunctiondefinition/_index.md
@@ -3,7 +3,7 @@ title: CustomFunctionDefinition class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 420
+weight: 430
url: /aspose.cells/customfunctiondefinition/
is_root: false
---
diff --git a/english/aspose.cells/customimplementationfactory/_index.md b/english/aspose.cells/customimplementationfactory/_index.md
index bd0ad4d2bb..e5e9545377 100644
--- a/english/aspose.cells/customimplementationfactory/_index.md
+++ b/english/aspose.cells/customimplementationfactory/_index.md
@@ -3,7 +3,7 @@ title: CustomImplementationFactory class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 430
+weight: 440
url: /aspose.cells/customimplementationfactory/
is_root: false
---
diff --git a/english/aspose.cells/databar/_index.md b/english/aspose.cells/databar/_index.md
index ca464fd746..facd3b8704 100644
--- a/english/aspose.cells/databar/_index.md
+++ b/english/aspose.cells/databar/_index.md
@@ -3,7 +3,7 @@ title: DataBar class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 440
+weight: 450
url: /aspose.cells/databar/
is_root: false
---
diff --git a/english/aspose.cells/databaraxisposition/_index.md b/english/aspose.cells/databaraxisposition/_index.md
index e6278b7d60..5390585d45 100644
--- a/english/aspose.cells/databaraxisposition/_index.md
+++ b/english/aspose.cells/databaraxisposition/_index.md
@@ -3,7 +3,7 @@ title: DataBarAxisPosition enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2040
+weight: 2050
url: /aspose.cells/databaraxisposition/
is_root: false
---
diff --git a/english/aspose.cells/databarborder/_index.md b/english/aspose.cells/databarborder/_index.md
index e7b3ad19b4..82d8fd6391 100644
--- a/english/aspose.cells/databarborder/_index.md
+++ b/english/aspose.cells/databarborder/_index.md
@@ -3,7 +3,7 @@ title: DataBarBorder class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 450
+weight: 460
url: /aspose.cells/databarborder/
is_root: false
---
diff --git a/english/aspose.cells/databarbordertype/_index.md b/english/aspose.cells/databarbordertype/_index.md
index 7c5e475d4c..97b521b5be 100644
--- a/english/aspose.cells/databarbordertype/_index.md
+++ b/english/aspose.cells/databarbordertype/_index.md
@@ -3,7 +3,7 @@ title: DataBarBorderType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2050
+weight: 2060
url: /aspose.cells/databarbordertype/
is_root: false
---
diff --git a/english/aspose.cells/databarfilltype/_index.md b/english/aspose.cells/databarfilltype/_index.md
index f29565d539..263f2d6054 100644
--- a/english/aspose.cells/databarfilltype/_index.md
+++ b/english/aspose.cells/databarfilltype/_index.md
@@ -3,7 +3,7 @@ title: DataBarFillType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2060
+weight: 2070
url: /aspose.cells/databarfilltype/
is_root: false
---
diff --git a/english/aspose.cells/databarnegativecolortype/_index.md b/english/aspose.cells/databarnegativecolortype/_index.md
index 38a134e142..d8dd368801 100644
--- a/english/aspose.cells/databarnegativecolortype/_index.md
+++ b/english/aspose.cells/databarnegativecolortype/_index.md
@@ -3,7 +3,7 @@ title: DataBarNegativeColorType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2070
+weight: 2080
url: /aspose.cells/databarnegativecolortype/
is_root: false
---
diff --git a/english/aspose.cells/datasorter/_index.md b/english/aspose.cells/datasorter/_index.md
index 51cf553a51..34eac9d74f 100644
--- a/english/aspose.cells/datasorter/_index.md
+++ b/english/aspose.cells/datasorter/_index.md
@@ -3,7 +3,7 @@ title: DataSorter class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 460
+weight: 470
url: /aspose.cells/datasorter/
is_root: false
---
diff --git a/english/aspose.cells/datasorterkey/_index.md b/english/aspose.cells/datasorterkey/_index.md
index e3b85a3add..d8bdb52050 100644
--- a/english/aspose.cells/datasorterkey/_index.md
+++ b/english/aspose.cells/datasorterkey/_index.md
@@ -3,7 +3,7 @@ title: DataSorterKey class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 470
+weight: 480
url: /aspose.cells/datasorterkey/
is_root: false
---
diff --git a/english/aspose.cells/datasorterkeycollection/_index.md b/english/aspose.cells/datasorterkeycollection/_index.md
index b6910f439c..f6ece6579b 100644
--- a/english/aspose.cells/datasorterkeycollection/_index.md
+++ b/english/aspose.cells/datasorterkeycollection/_index.md
@@ -3,7 +3,7 @@ title: DataSorterKeyCollection class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 480
+weight: 490
url: /aspose.cells/datasorterkeycollection/
is_root: false
---
diff --git a/english/aspose.cells/datetimegroupingtype/_index.md b/english/aspose.cells/datetimegroupingtype/_index.md
index f9619fe758..2f0cc38af8 100644
--- a/english/aspose.cells/datetimegroupingtype/_index.md
+++ b/english/aspose.cells/datetimegroupingtype/_index.md
@@ -3,7 +3,7 @@ title: DateTimeGroupingType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2080
+weight: 2090
url: /aspose.cells/datetimegroupingtype/
is_root: false
---
diff --git a/english/aspose.cells/datetimegroupitem/_index.md b/english/aspose.cells/datetimegroupitem/_index.md
index 63363f3d73..c96b3aac11 100644
--- a/english/aspose.cells/datetimegroupitem/_index.md
+++ b/english/aspose.cells/datetimegroupitem/_index.md
@@ -3,7 +3,7 @@ title: DateTimeGroupItem class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 490
+weight: 500
url: /aspose.cells/datetimegroupitem/
is_root: false
---
diff --git a/english/aspose.cells/defaulteditlanguage/_index.md b/english/aspose.cells/defaulteditlanguage/_index.md
index 3fc20790b3..30b537db59 100644
--- a/english/aspose.cells/defaulteditlanguage/_index.md
+++ b/english/aspose.cells/defaulteditlanguage/_index.md
@@ -3,7 +3,7 @@ title: DefaultEditLanguage enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2090
+weight: 2100
url: /aspose.cells/defaulteditlanguage/
is_root: false
---
diff --git a/english/aspose.cells/defaultstylesettings/_index.md b/english/aspose.cells/defaultstylesettings/_index.md
index bb255c2a80..402553685c 100644
--- a/english/aspose.cells/defaultstylesettings/_index.md
+++ b/english/aspose.cells/defaultstylesettings/_index.md
@@ -3,7 +3,7 @@ title: DefaultStyleSettings class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 500
+weight: 510
url: /aspose.cells/defaultstylesettings/
is_root: false
---
diff --git a/english/aspose.cells/deleteblankoptions/_index.md b/english/aspose.cells/deleteblankoptions/_index.md
index 200fc871f3..a4db18dfc2 100644
--- a/english/aspose.cells/deleteblankoptions/_index.md
+++ b/english/aspose.cells/deleteblankoptions/_index.md
@@ -3,7 +3,7 @@ title: DeleteBlankOptions class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 510
+weight: 520
url: /aspose.cells/deleteblankoptions/
is_root: false
---
@@ -31,6 +31,7 @@ The DeleteBlankOptions type exposes the following members:
| Property | Description |
| :- | :- |
| [update_reference](/cells/python-net/aspose.cells/deleteblankoptions/update_reference) | Indicates if update references in other worksheets. |
+| [formula_change_monitor](/cells/python-net/aspose.cells/deleteblankoptions/formula_change_monitor) | Gets/sets the monitor for tracking changes caused by the deletion. |
| [empty_string_as_blank](/cells/python-net/aspose.cells/deleteblankoptions/empty_string_as_blank) | Whether one cell will be taken as blank when its value is empty string.
Default value is true. |
| [empty_formula_value_as_blank](/cells/python-net/aspose.cells/deleteblankoptions/empty_formula_value_as_blank) | Whether one cell will be taken as blank when it is formula and the calculated result is null or empty string.
Default value is false. |
| [drawings_as_blank](/cells/python-net/aspose.cells/deleteblankoptions/drawings_as_blank) | Whether drawing related objects such as picture, shape, chart... will be taken as blank.
Default value is true. |
diff --git a/english/aspose.cells/deleteblankoptions/formula_change_monitor/_index.md b/english/aspose.cells/deleteblankoptions/formula_change_monitor/_index.md
new file mode 100644
index 0000000000..5ef37d4c03
--- /dev/null
+++ b/english/aspose.cells/deleteblankoptions/formula_change_monitor/_index.md
@@ -0,0 +1,28 @@
+---
+title: formula_change_monitor property
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 70
+url: /aspose.cells/deleteblankoptions/formula_change_monitor/
+is_root: false
+---
+
+## formula_change_monitor property
+
+
+Gets/sets the monitor for tracking changes caused by the deletion.
+### Definition:
+```python
+@property
+def formula_change_monitor(self):
+ ...
+@formula_change_monitor.setter
+def formula_change_monitor(self, value):
+ ...
+```
+
+### See Also
+* module [`aspose.cells`](../../)
+* class [`AbstractFormulaChangeMonitor`](/cells/python-net/aspose.cells/abstractformulachangemonitor)
+* class [`DeleteBlankOptions`](/cells/python-net/aspose.cells/deleteblankoptions)
diff --git a/english/aspose.cells/deleteblankoptions/merged_cells_shrink_type/_index.md b/english/aspose.cells/deleteblankoptions/merged_cells_shrink_type/_index.md
index f83ef9e46f..6ba8287914 100644
--- a/english/aspose.cells/deleteblankoptions/merged_cells_shrink_type/_index.md
+++ b/english/aspose.cells/deleteblankoptions/merged_cells_shrink_type/_index.md
@@ -3,7 +3,7 @@ title: merged_cells_shrink_type property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 70
+weight: 80
url: /aspose.cells/deleteblankoptions/merged_cells_shrink_type/
is_root: false
---
diff --git a/english/aspose.cells/deleteblankoptions/start_index/_index.md b/english/aspose.cells/deleteblankoptions/start_index/_index.md
index c7601dc91c..9de89af20f 100644
--- a/english/aspose.cells/deleteblankoptions/start_index/_index.md
+++ b/english/aspose.cells/deleteblankoptions/start_index/_index.md
@@ -3,7 +3,7 @@ title: start_index property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 80
+weight: 90
url: /aspose.cells/deleteblankoptions/start_index/
is_root: false
---
diff --git a/english/aspose.cells/deleteblankoptions/update_reference/_index.md b/english/aspose.cells/deleteblankoptions/update_reference/_index.md
index 246b0d9f2c..2e88b14483 100644
--- a/english/aspose.cells/deleteblankoptions/update_reference/_index.md
+++ b/english/aspose.cells/deleteblankoptions/update_reference/_index.md
@@ -3,7 +3,7 @@ title: update_reference property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 90
+weight: 100
url: /aspose.cells/deleteblankoptions/update_reference/
is_root: false
---
diff --git a/english/aspose.cells/deleteoptions/_index.md b/english/aspose.cells/deleteoptions/_index.md
index 5afd9b512c..6a878607bb 100644
--- a/english/aspose.cells/deleteoptions/_index.md
+++ b/english/aspose.cells/deleteoptions/_index.md
@@ -3,7 +3,7 @@ title: DeleteOptions class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 520
+weight: 530
url: /aspose.cells/deleteoptions/
is_root: false
---
@@ -26,6 +26,7 @@ The DeleteOptions type exposes the following members:
| Property | Description |
| :- | :- |
| [update_reference](/cells/python-net/aspose.cells/deleteoptions/update_reference) | Indicates if update references in other worksheets. |
+| [formula_change_monitor](/cells/python-net/aspose.cells/deleteoptions/formula_change_monitor) | Gets/sets the monitor for tracking changes caused by the deletion. |
diff --git a/english/aspose.cells/deleteoptions/formula_change_monitor/_index.md b/english/aspose.cells/deleteoptions/formula_change_monitor/_index.md
new file mode 100644
index 0000000000..5583c18f4d
--- /dev/null
+++ b/english/aspose.cells/deleteoptions/formula_change_monitor/_index.md
@@ -0,0 +1,28 @@
+---
+title: formula_change_monitor property
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 30
+url: /aspose.cells/deleteoptions/formula_change_monitor/
+is_root: false
+---
+
+## formula_change_monitor property
+
+
+Gets/sets the monitor for tracking changes caused by the deletion.
+### Definition:
+```python
+@property
+def formula_change_monitor(self):
+ ...
+@formula_change_monitor.setter
+def formula_change_monitor(self, value):
+ ...
+```
+
+### See Also
+* module [`aspose.cells`](../../)
+* class [`AbstractFormulaChangeMonitor`](/cells/python-net/aspose.cells/abstractformulachangemonitor)
+* class [`DeleteOptions`](/cells/python-net/aspose.cells/deleteoptions)
diff --git a/english/aspose.cells/deleteoptions/update_reference/_index.md b/english/aspose.cells/deleteoptions/update_reference/_index.md
index b1ff08b74a..9006208dba 100644
--- a/english/aspose.cells/deleteoptions/update_reference/_index.md
+++ b/english/aspose.cells/deleteoptions/update_reference/_index.md
@@ -3,7 +3,7 @@ title: update_reference property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 30
+weight: 40
url: /aspose.cells/deleteoptions/update_reference/
is_root: false
---
diff --git a/english/aspose.cells/difsaveoptions/_index.md b/english/aspose.cells/difsaveoptions/_index.md
index a23297408b..0742626290 100644
--- a/english/aspose.cells/difsaveoptions/_index.md
+++ b/english/aspose.cells/difsaveoptions/_index.md
@@ -3,7 +3,7 @@ title: DifSaveOptions class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 530
+weight: 540
url: /aspose.cells/difsaveoptions/
is_root: false
---
@@ -40,6 +40,7 @@ The DifSaveOptions type exposes the following members:
| [sort_external_names](/cells/python-net/aspose.cells/difsaveoptions/sort_external_names) | Indicates whether sorting external defined names before saving file. |
| [refresh_chart_cache](/cells/python-net/aspose.cells/difsaveoptions/refresh_chart_cache) | Indicates whether refreshing chart cache data |
| [warning_callback](/cells/python-net/aspose.cells/difsaveoptions/warning_callback) | Gets or sets warning callback. |
+| [check_excel_restriction](/cells/python-net/aspose.cells/difsaveoptions/check_excel_restriction) | Whether check restriction of excel file when user modify cells related objects.
For example, excel does not allow inputting string value longer than 32K.
When you input a value longer than 32K, it will be truncated. |
| [update_smart_art](/cells/python-net/aspose.cells/difsaveoptions/update_smart_art) | Indicates whether updating smart art setting.
The default value is false. |
| [encrypt_document_properties](/cells/python-net/aspose.cells/difsaveoptions/encrypt_document_properties) | Indicates whether encrypt document properties when saving as .xls file.
The default value is true. |
diff --git a/english/aspose.cells/difsaveoptions/check_excel_restriction/_index.md b/english/aspose.cells/difsaveoptions/check_excel_restriction/_index.md
new file mode 100644
index 0000000000..54fed49af9
--- /dev/null
+++ b/english/aspose.cells/difsaveoptions/check_excel_restriction/_index.md
@@ -0,0 +1,29 @@
+---
+title: check_excel_restriction property
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 40
+url: /aspose.cells/difsaveoptions/check_excel_restriction/
+is_root: false
+---
+
+## check_excel_restriction property
+
+
+Whether check restriction of excel file when user modify cells related objects.
+For example, excel does not allow inputting string value longer than 32K.
+When you input a value longer than 32K, it will be truncated.
+### Definition:
+```python
+@property
+def check_excel_restriction(self):
+ ...
+@check_excel_restriction.setter
+def check_excel_restriction(self, value):
+ ...
+```
+
+### See Also
+* module [`aspose.cells`](../../)
+* class [`DifSaveOptions`](/cells/python-net/aspose.cells/difsaveoptions)
diff --git a/english/aspose.cells/difsaveoptions/clear_data/_index.md b/english/aspose.cells/difsaveoptions/clear_data/_index.md
index bfb2f99bb3..c528286ad7 100644
--- a/english/aspose.cells/difsaveoptions/clear_data/_index.md
+++ b/english/aspose.cells/difsaveoptions/clear_data/_index.md
@@ -3,7 +3,7 @@ title: clear_data property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 40
+weight: 50
url: /aspose.cells/difsaveoptions/clear_data/
is_root: false
---
diff --git a/english/aspose.cells/difsaveoptions/create_directory/_index.md b/english/aspose.cells/difsaveoptions/create_directory/_index.md
index bde00dc20c..0bd33db5f2 100644
--- a/english/aspose.cells/difsaveoptions/create_directory/_index.md
+++ b/english/aspose.cells/difsaveoptions/create_directory/_index.md
@@ -3,7 +3,7 @@ title: create_directory property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 50
+weight: 60
url: /aspose.cells/difsaveoptions/create_directory/
is_root: false
---
diff --git a/english/aspose.cells/difsaveoptions/encrypt_document_properties/_index.md b/english/aspose.cells/difsaveoptions/encrypt_document_properties/_index.md
index d037da2304..4c6e06cf22 100644
--- a/english/aspose.cells/difsaveoptions/encrypt_document_properties/_index.md
+++ b/english/aspose.cells/difsaveoptions/encrypt_document_properties/_index.md
@@ -3,7 +3,7 @@ title: encrypt_document_properties property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 60
+weight: 70
url: /aspose.cells/difsaveoptions/encrypt_document_properties/
is_root: false
---
diff --git a/english/aspose.cells/difsaveoptions/merge_areas/_index.md b/english/aspose.cells/difsaveoptions/merge_areas/_index.md
index c16eab24b1..c6fa7e0c32 100644
--- a/english/aspose.cells/difsaveoptions/merge_areas/_index.md
+++ b/english/aspose.cells/difsaveoptions/merge_areas/_index.md
@@ -3,7 +3,7 @@ title: merge_areas property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 70
+weight: 80
url: /aspose.cells/difsaveoptions/merge_areas/
is_root: false
---
diff --git a/english/aspose.cells/difsaveoptions/refresh_chart_cache/_index.md b/english/aspose.cells/difsaveoptions/refresh_chart_cache/_index.md
index 6f9d6268f1..ece6f70206 100644
--- a/english/aspose.cells/difsaveoptions/refresh_chart_cache/_index.md
+++ b/english/aspose.cells/difsaveoptions/refresh_chart_cache/_index.md
@@ -3,7 +3,7 @@ title: refresh_chart_cache property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 80
+weight: 90
url: /aspose.cells/difsaveoptions/refresh_chart_cache/
is_root: false
---
diff --git a/english/aspose.cells/difsaveoptions/save_format/_index.md b/english/aspose.cells/difsaveoptions/save_format/_index.md
index 86ce057c30..689738d474 100644
--- a/english/aspose.cells/difsaveoptions/save_format/_index.md
+++ b/english/aspose.cells/difsaveoptions/save_format/_index.md
@@ -3,7 +3,7 @@ title: save_format property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 90
+weight: 100
url: /aspose.cells/difsaveoptions/save_format/
is_root: false
---
diff --git a/english/aspose.cells/difsaveoptions/sort_external_names/_index.md b/english/aspose.cells/difsaveoptions/sort_external_names/_index.md
index 736a02cb21..b899efe5a8 100644
--- a/english/aspose.cells/difsaveoptions/sort_external_names/_index.md
+++ b/english/aspose.cells/difsaveoptions/sort_external_names/_index.md
@@ -3,7 +3,7 @@ title: sort_external_names property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 100
+weight: 110
url: /aspose.cells/difsaveoptions/sort_external_names/
is_root: false
---
diff --git a/english/aspose.cells/difsaveoptions/sort_names/_index.md b/english/aspose.cells/difsaveoptions/sort_names/_index.md
index b16fe26335..1987a20925 100644
--- a/english/aspose.cells/difsaveoptions/sort_names/_index.md
+++ b/english/aspose.cells/difsaveoptions/sort_names/_index.md
@@ -3,7 +3,7 @@ title: sort_names property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 110
+weight: 120
url: /aspose.cells/difsaveoptions/sort_names/
is_root: false
---
diff --git a/english/aspose.cells/difsaveoptions/update_smart_art/_index.md b/english/aspose.cells/difsaveoptions/update_smart_art/_index.md
index 4d83dbf086..ac504bce9b 100644
--- a/english/aspose.cells/difsaveoptions/update_smart_art/_index.md
+++ b/english/aspose.cells/difsaveoptions/update_smart_art/_index.md
@@ -3,7 +3,7 @@ title: update_smart_art property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 120
+weight: 130
url: /aspose.cells/difsaveoptions/update_smart_art/
is_root: false
---
diff --git a/english/aspose.cells/difsaveoptions/validate_merged_areas/_index.md b/english/aspose.cells/difsaveoptions/validate_merged_areas/_index.md
index af5ae2d074..b852692d1f 100644
--- a/english/aspose.cells/difsaveoptions/validate_merged_areas/_index.md
+++ b/english/aspose.cells/difsaveoptions/validate_merged_areas/_index.md
@@ -3,7 +3,7 @@ title: validate_merged_areas property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 130
+weight: 140
url: /aspose.cells/difsaveoptions/validate_merged_areas/
is_root: false
---
diff --git a/english/aspose.cells/difsaveoptions/warning_callback/_index.md b/english/aspose.cells/difsaveoptions/warning_callback/_index.md
index a9075a144d..e53dfee12b 100644
--- a/english/aspose.cells/difsaveoptions/warning_callback/_index.md
+++ b/english/aspose.cells/difsaveoptions/warning_callback/_index.md
@@ -3,7 +3,7 @@ title: warning_callback property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 140
+weight: 150
url: /aspose.cells/difsaveoptions/warning_callback/
is_root: false
---
diff --git a/english/aspose.cells/directorytype/_index.md b/english/aspose.cells/directorytype/_index.md
index a8f63642e1..e453fcfeac 100644
--- a/english/aspose.cells/directorytype/_index.md
+++ b/english/aspose.cells/directorytype/_index.md
@@ -3,7 +3,7 @@ title: DirectoryType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2100
+weight: 2110
url: /aspose.cells/directorytype/
is_root: false
---
diff --git a/english/aspose.cells/displaydrawingobjects/_index.md b/english/aspose.cells/displaydrawingobjects/_index.md
index c42d2d8d46..80c31300cd 100644
--- a/english/aspose.cells/displaydrawingobjects/_index.md
+++ b/english/aspose.cells/displaydrawingobjects/_index.md
@@ -3,7 +3,7 @@ title: DisplayDrawingObjects enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2110
+weight: 2120
url: /aspose.cells/displaydrawingobjects/
is_root: false
---
diff --git a/english/aspose.cells/docxsaveoptions/_index.md b/english/aspose.cells/docxsaveoptions/_index.md
index dbf7e808c0..58126ec262 100644
--- a/english/aspose.cells/docxsaveoptions/_index.md
+++ b/english/aspose.cells/docxsaveoptions/_index.md
@@ -3,7 +3,7 @@ title: DocxSaveOptions class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 540
+weight: 550
url: /aspose.cells/docxsaveoptions/
is_root: false
---
@@ -42,6 +42,7 @@ The DocxSaveOptions type exposes the following members:
| [sort_external_names](/cells/python-net/aspose.cells/docxsaveoptions/sort_external_names) | Indicates whether sorting external defined names before saving file. |
| [refresh_chart_cache](/cells/python-net/aspose.cells/docxsaveoptions/refresh_chart_cache) | Indicates whether refreshing chart cache data |
| [warning_callback](/cells/python-net/aspose.cells/docxsaveoptions/warning_callback) | Gets or sets warning callback. |
+| [check_excel_restriction](/cells/python-net/aspose.cells/docxsaveoptions/check_excel_restriction) | Whether check restriction of excel file when user modify cells related objects.
For example, excel does not allow inputting string value longer than 32K.
When you input a value longer than 32K, it will be truncated. |
| [update_smart_art](/cells/python-net/aspose.cells/docxsaveoptions/update_smart_art) | Indicates whether updating smart art setting.
The default value is false. |
| [encrypt_document_properties](/cells/python-net/aspose.cells/docxsaveoptions/encrypt_document_properties) | Indicates whether encrypt document properties when saving as .xls file.
The default value is true. |
| [default_font](/cells/python-net/aspose.cells/docxsaveoptions/default_font) | When characters in the Excel are Unicode and not be set with correct font in cell style,
They may appear as block in pdf,image.
Set the DefaultFont such as MingLiu or MS Gothic to show these characters.
If this property is not set, Aspose.Cells will use system default font to show these unicode characters. |
diff --git a/english/aspose.cells/docxsaveoptions/check_excel_restriction/_index.md b/english/aspose.cells/docxsaveoptions/check_excel_restriction/_index.md
new file mode 100644
index 0000000000..360b64920a
--- /dev/null
+++ b/english/aspose.cells/docxsaveoptions/check_excel_restriction/_index.md
@@ -0,0 +1,29 @@
+---
+title: check_excel_restriction property
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 50
+url: /aspose.cells/docxsaveoptions/check_excel_restriction/
+is_root: false
+---
+
+## check_excel_restriction property
+
+
+Whether check restriction of excel file when user modify cells related objects.
+For example, excel does not allow inputting string value longer than 32K.
+When you input a value longer than 32K, it will be truncated.
+### Definition:
+```python
+@property
+def check_excel_restriction(self):
+ ...
+@check_excel_restriction.setter
+def check_excel_restriction(self, value):
+ ...
+```
+
+### See Also
+* module [`aspose.cells`](../../)
+* class [`DocxSaveOptions`](/cells/python-net/aspose.cells/docxsaveoptions)
diff --git a/english/aspose.cells/docxsaveoptions/check_font_compatibility/_index.md b/english/aspose.cells/docxsaveoptions/check_font_compatibility/_index.md
index 0bae4ebb0d..3f461d4f4c 100644
--- a/english/aspose.cells/docxsaveoptions/check_font_compatibility/_index.md
+++ b/english/aspose.cells/docxsaveoptions/check_font_compatibility/_index.md
@@ -3,7 +3,7 @@ title: check_font_compatibility property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 50
+weight: 60
url: /aspose.cells/docxsaveoptions/check_font_compatibility/
is_root: false
---
diff --git a/english/aspose.cells/docxsaveoptions/check_workbook_default_font/_index.md b/english/aspose.cells/docxsaveoptions/check_workbook_default_font/_index.md
index e6a340818e..3aad17e06e 100644
--- a/english/aspose.cells/docxsaveoptions/check_workbook_default_font/_index.md
+++ b/english/aspose.cells/docxsaveoptions/check_workbook_default_font/_index.md
@@ -3,7 +3,7 @@ title: check_workbook_default_font property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 60
+weight: 70
url: /aspose.cells/docxsaveoptions/check_workbook_default_font/
is_root: false
---
diff --git a/english/aspose.cells/docxsaveoptions/clear_data/_index.md b/english/aspose.cells/docxsaveoptions/clear_data/_index.md
index 8ac05c648b..7f09b597ea 100644
--- a/english/aspose.cells/docxsaveoptions/clear_data/_index.md
+++ b/english/aspose.cells/docxsaveoptions/clear_data/_index.md
@@ -3,7 +3,7 @@ title: clear_data property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 70
+weight: 80
url: /aspose.cells/docxsaveoptions/clear_data/
is_root: false
---
diff --git a/english/aspose.cells/docxsaveoptions/create_directory/_index.md b/english/aspose.cells/docxsaveoptions/create_directory/_index.md
index ebc0357384..271511ab0c 100644
--- a/english/aspose.cells/docxsaveoptions/create_directory/_index.md
+++ b/english/aspose.cells/docxsaveoptions/create_directory/_index.md
@@ -3,7 +3,7 @@ title: create_directory property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 80
+weight: 90
url: /aspose.cells/docxsaveoptions/create_directory/
is_root: false
---
diff --git a/english/aspose.cells/docxsaveoptions/default_edit_language/_index.md b/english/aspose.cells/docxsaveoptions/default_edit_language/_index.md
index 8cc3d55815..403aacd8c2 100644
--- a/english/aspose.cells/docxsaveoptions/default_edit_language/_index.md
+++ b/english/aspose.cells/docxsaveoptions/default_edit_language/_index.md
@@ -3,7 +3,7 @@ title: default_edit_language property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 90
+weight: 100
url: /aspose.cells/docxsaveoptions/default_edit_language/
is_root: false
---
diff --git a/english/aspose.cells/docxsaveoptions/default_font/_index.md b/english/aspose.cells/docxsaveoptions/default_font/_index.md
index a0295d98d4..692453dbe8 100644
--- a/english/aspose.cells/docxsaveoptions/default_font/_index.md
+++ b/english/aspose.cells/docxsaveoptions/default_font/_index.md
@@ -3,7 +3,7 @@ title: default_font property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 100
+weight: 110
url: /aspose.cells/docxsaveoptions/default_font/
is_root: false
---
diff --git a/english/aspose.cells/docxsaveoptions/draw_object_event_handler/_index.md b/english/aspose.cells/docxsaveoptions/draw_object_event_handler/_index.md
index 1c98a721c7..a925e788b7 100644
--- a/english/aspose.cells/docxsaveoptions/draw_object_event_handler/_index.md
+++ b/english/aspose.cells/docxsaveoptions/draw_object_event_handler/_index.md
@@ -3,7 +3,7 @@ title: draw_object_event_handler property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 110
+weight: 120
url: /aspose.cells/docxsaveoptions/draw_object_event_handler/
is_root: false
---
diff --git a/english/aspose.cells/docxsaveoptions/emf_render_setting/_index.md b/english/aspose.cells/docxsaveoptions/emf_render_setting/_index.md
index 1916f97de9..fab3dbd617 100644
--- a/english/aspose.cells/docxsaveoptions/emf_render_setting/_index.md
+++ b/english/aspose.cells/docxsaveoptions/emf_render_setting/_index.md
@@ -3,7 +3,7 @@ title: emf_render_setting property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 120
+weight: 130
url: /aspose.cells/docxsaveoptions/emf_render_setting/
is_root: false
---
diff --git a/english/aspose.cells/docxsaveoptions/encrypt_document_properties/_index.md b/english/aspose.cells/docxsaveoptions/encrypt_document_properties/_index.md
index 6d206896a5..1c529f373b 100644
--- a/english/aspose.cells/docxsaveoptions/encrypt_document_properties/_index.md
+++ b/english/aspose.cells/docxsaveoptions/encrypt_document_properties/_index.md
@@ -3,7 +3,7 @@ title: encrypt_document_properties property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 130
+weight: 140
url: /aspose.cells/docxsaveoptions/encrypt_document_properties/
is_root: false
---
diff --git a/english/aspose.cells/docxsaveoptions/gridline_type/_index.md b/english/aspose.cells/docxsaveoptions/gridline_type/_index.md
index 0263e9e522..dc8d164dae 100644
--- a/english/aspose.cells/docxsaveoptions/gridline_type/_index.md
+++ b/english/aspose.cells/docxsaveoptions/gridline_type/_index.md
@@ -3,7 +3,7 @@ title: gridline_type property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 140
+weight: 150
url: /aspose.cells/docxsaveoptions/gridline_type/
is_root: false
---
diff --git a/english/aspose.cells/docxsaveoptions/ignore_error/_index.md b/english/aspose.cells/docxsaveoptions/ignore_error/_index.md
index 654eb4acca..c255d9c29f 100644
--- a/english/aspose.cells/docxsaveoptions/ignore_error/_index.md
+++ b/english/aspose.cells/docxsaveoptions/ignore_error/_index.md
@@ -3,7 +3,7 @@ title: ignore_error property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 150
+weight: 160
url: /aspose.cells/docxsaveoptions/ignore_error/
is_root: false
---
diff --git a/english/aspose.cells/docxsaveoptions/is_font_substitution_char_granularity/_index.md b/english/aspose.cells/docxsaveoptions/is_font_substitution_char_granularity/_index.md
index 44fa29e795..d9062b513a 100644
--- a/english/aspose.cells/docxsaveoptions/is_font_substitution_char_granularity/_index.md
+++ b/english/aspose.cells/docxsaveoptions/is_font_substitution_char_granularity/_index.md
@@ -3,7 +3,7 @@ title: is_font_substitution_char_granularity property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 160
+weight: 170
url: /aspose.cells/docxsaveoptions/is_font_substitution_char_granularity/
is_root: false
---
diff --git a/english/aspose.cells/docxsaveoptions/merge_areas/_index.md b/english/aspose.cells/docxsaveoptions/merge_areas/_index.md
index 1296330623..fa7aa1a639 100644
--- a/english/aspose.cells/docxsaveoptions/merge_areas/_index.md
+++ b/english/aspose.cells/docxsaveoptions/merge_areas/_index.md
@@ -3,7 +3,7 @@ title: merge_areas property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 170
+weight: 180
url: /aspose.cells/docxsaveoptions/merge_areas/
is_root: false
---
diff --git a/english/aspose.cells/docxsaveoptions/one_page_per_sheet/_index.md b/english/aspose.cells/docxsaveoptions/one_page_per_sheet/_index.md
index 77a31d7c4d..ba2e42c388 100644
--- a/english/aspose.cells/docxsaveoptions/one_page_per_sheet/_index.md
+++ b/english/aspose.cells/docxsaveoptions/one_page_per_sheet/_index.md
@@ -3,7 +3,7 @@ title: one_page_per_sheet property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 180
+weight: 190
url: /aspose.cells/docxsaveoptions/one_page_per_sheet/
is_root: false
---
diff --git a/english/aspose.cells/docxsaveoptions/output_blank_page_when_nothing_to_print/_index.md b/english/aspose.cells/docxsaveoptions/output_blank_page_when_nothing_to_print/_index.md
index ac79c42073..491a0d7f92 100644
--- a/english/aspose.cells/docxsaveoptions/output_blank_page_when_nothing_to_print/_index.md
+++ b/english/aspose.cells/docxsaveoptions/output_blank_page_when_nothing_to_print/_index.md
@@ -3,7 +3,7 @@ title: output_blank_page_when_nothing_to_print property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 190
+weight: 200
url: /aspose.cells/docxsaveoptions/output_blank_page_when_nothing_to_print/
is_root: false
---
diff --git a/english/aspose.cells/docxsaveoptions/page_count/_index.md b/english/aspose.cells/docxsaveoptions/page_count/_index.md
index 802b19dc5a..825ffceba5 100644
--- a/english/aspose.cells/docxsaveoptions/page_count/_index.md
+++ b/english/aspose.cells/docxsaveoptions/page_count/_index.md
@@ -3,7 +3,7 @@ title: page_count property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 200
+weight: 210
url: /aspose.cells/docxsaveoptions/page_count/
is_root: false
---
diff --git a/english/aspose.cells/docxsaveoptions/page_index/_index.md b/english/aspose.cells/docxsaveoptions/page_index/_index.md
index 3ec18ac3fc..15be4d4eab 100644
--- a/english/aspose.cells/docxsaveoptions/page_index/_index.md
+++ b/english/aspose.cells/docxsaveoptions/page_index/_index.md
@@ -3,7 +3,7 @@ title: page_index property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 210
+weight: 220
url: /aspose.cells/docxsaveoptions/page_index/
is_root: false
---
diff --git a/english/aspose.cells/docxsaveoptions/page_saving_callback/_index.md b/english/aspose.cells/docxsaveoptions/page_saving_callback/_index.md
index dae8b64734..a0dd19106f 100644
--- a/english/aspose.cells/docxsaveoptions/page_saving_callback/_index.md
+++ b/english/aspose.cells/docxsaveoptions/page_saving_callback/_index.md
@@ -3,7 +3,7 @@ title: page_saving_callback property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 220
+weight: 230
url: /aspose.cells/docxsaveoptions/page_saving_callback/
is_root: false
---
diff --git a/english/aspose.cells/docxsaveoptions/printing_page_type/_index.md b/english/aspose.cells/docxsaveoptions/printing_page_type/_index.md
index c11a0e9d22..8d58a820ad 100644
--- a/english/aspose.cells/docxsaveoptions/printing_page_type/_index.md
+++ b/english/aspose.cells/docxsaveoptions/printing_page_type/_index.md
@@ -3,7 +3,7 @@ title: printing_page_type property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 230
+weight: 240
url: /aspose.cells/docxsaveoptions/printing_page_type/
is_root: false
---
diff --git a/english/aspose.cells/docxsaveoptions/refresh_chart_cache/_index.md b/english/aspose.cells/docxsaveoptions/refresh_chart_cache/_index.md
index d8586510db..c005bf929d 100644
--- a/english/aspose.cells/docxsaveoptions/refresh_chart_cache/_index.md
+++ b/english/aspose.cells/docxsaveoptions/refresh_chart_cache/_index.md
@@ -3,7 +3,7 @@ title: refresh_chart_cache property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 240
+weight: 250
url: /aspose.cells/docxsaveoptions/refresh_chart_cache/
is_root: false
---
diff --git a/english/aspose.cells/docxsaveoptions/save_format/_index.md b/english/aspose.cells/docxsaveoptions/save_format/_index.md
index c3f40a83ca..1f6429846b 100644
--- a/english/aspose.cells/docxsaveoptions/save_format/_index.md
+++ b/english/aspose.cells/docxsaveoptions/save_format/_index.md
@@ -3,7 +3,7 @@ title: save_format property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 250
+weight: 260
url: /aspose.cells/docxsaveoptions/save_format/
is_root: false
---
diff --git a/english/aspose.cells/docxsaveoptions/sheet_set/_index.md b/english/aspose.cells/docxsaveoptions/sheet_set/_index.md
index 6873939a9d..e9dd7a06f5 100644
--- a/english/aspose.cells/docxsaveoptions/sheet_set/_index.md
+++ b/english/aspose.cells/docxsaveoptions/sheet_set/_index.md
@@ -3,7 +3,7 @@ title: sheet_set property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 260
+weight: 270
url: /aspose.cells/docxsaveoptions/sheet_set/
is_root: false
---
diff --git a/english/aspose.cells/docxsaveoptions/sort_external_names/_index.md b/english/aspose.cells/docxsaveoptions/sort_external_names/_index.md
index c975123636..009f501387 100644
--- a/english/aspose.cells/docxsaveoptions/sort_external_names/_index.md
+++ b/english/aspose.cells/docxsaveoptions/sort_external_names/_index.md
@@ -3,7 +3,7 @@ title: sort_external_names property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 270
+weight: 280
url: /aspose.cells/docxsaveoptions/sort_external_names/
is_root: false
---
diff --git a/english/aspose.cells/docxsaveoptions/sort_names/_index.md b/english/aspose.cells/docxsaveoptions/sort_names/_index.md
index edced83378..48cd75d10e 100644
--- a/english/aspose.cells/docxsaveoptions/sort_names/_index.md
+++ b/english/aspose.cells/docxsaveoptions/sort_names/_index.md
@@ -3,7 +3,7 @@ title: sort_names property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 280
+weight: 290
url: /aspose.cells/docxsaveoptions/sort_names/
is_root: false
---
diff --git a/english/aspose.cells/docxsaveoptions/text_cross_type/_index.md b/english/aspose.cells/docxsaveoptions/text_cross_type/_index.md
index c8d11ab644..e710c44dbb 100644
--- a/english/aspose.cells/docxsaveoptions/text_cross_type/_index.md
+++ b/english/aspose.cells/docxsaveoptions/text_cross_type/_index.md
@@ -3,7 +3,7 @@ title: text_cross_type property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 290
+weight: 300
url: /aspose.cells/docxsaveoptions/text_cross_type/
is_root: false
---
diff --git a/english/aspose.cells/docxsaveoptions/update_smart_art/_index.md b/english/aspose.cells/docxsaveoptions/update_smart_art/_index.md
index 5ff9facab1..fd7251e4b5 100644
--- a/english/aspose.cells/docxsaveoptions/update_smart_art/_index.md
+++ b/english/aspose.cells/docxsaveoptions/update_smart_art/_index.md
@@ -3,7 +3,7 @@ title: update_smart_art property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 300
+weight: 310
url: /aspose.cells/docxsaveoptions/update_smart_art/
is_root: false
---
diff --git a/english/aspose.cells/docxsaveoptions/validate_merged_areas/_index.md b/english/aspose.cells/docxsaveoptions/validate_merged_areas/_index.md
index 3dda6f758c..8c66a20a77 100644
--- a/english/aspose.cells/docxsaveoptions/validate_merged_areas/_index.md
+++ b/english/aspose.cells/docxsaveoptions/validate_merged_areas/_index.md
@@ -3,7 +3,7 @@ title: validate_merged_areas property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 310
+weight: 320
url: /aspose.cells/docxsaveoptions/validate_merged_areas/
is_root: false
---
diff --git a/english/aspose.cells/docxsaveoptions/warning_callback/_index.md b/english/aspose.cells/docxsaveoptions/warning_callback/_index.md
index 06983cf978..29c422dc21 100644
--- a/english/aspose.cells/docxsaveoptions/warning_callback/_index.md
+++ b/english/aspose.cells/docxsaveoptions/warning_callback/_index.md
@@ -3,7 +3,7 @@ title: warning_callback property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 320
+weight: 330
url: /aspose.cells/docxsaveoptions/warning_callback/
is_root: false
---
diff --git a/english/aspose.cells/dxfcollection/_index.md b/english/aspose.cells/dxfcollection/_index.md
index 5811bc737b..2500aec0ee 100644
--- a/english/aspose.cells/dxfcollection/_index.md
+++ b/english/aspose.cells/dxfcollection/_index.md
@@ -3,7 +3,7 @@ title: DxfCollection class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 550
+weight: 560
url: /aspose.cells/dxfcollection/
is_root: false
---
diff --git a/english/aspose.cells/dynamicfilter/_index.md b/english/aspose.cells/dynamicfilter/_index.md
index 591a9e4d32..f2d3d27ff6 100644
--- a/english/aspose.cells/dynamicfilter/_index.md
+++ b/english/aspose.cells/dynamicfilter/_index.md
@@ -3,7 +3,7 @@ title: DynamicFilter class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 560
+weight: 570
url: /aspose.cells/dynamicfilter/
is_root: false
---
diff --git a/english/aspose.cells/dynamicfiltertype/_index.md b/english/aspose.cells/dynamicfiltertype/_index.md
index eaa94d3479..e1b2c3571d 100644
--- a/english/aspose.cells/dynamicfiltertype/_index.md
+++ b/english/aspose.cells/dynamicfiltertype/_index.md
@@ -3,7 +3,7 @@ title: DynamicFilterType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2120
+weight: 2130
url: /aspose.cells/dynamicfiltertype/
is_root: false
---
diff --git a/english/aspose.cells/ebookloadoptions/_index.md b/english/aspose.cells/ebookloadoptions/_index.md
index 2672b94c0e..34d2f20e6a 100644
--- a/english/aspose.cells/ebookloadoptions/_index.md
+++ b/english/aspose.cells/ebookloadoptions/_index.md
@@ -3,7 +3,7 @@ title: EbookLoadOptions class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 570
+weight: 580
url: /aspose.cells/ebookloadoptions/
is_root: false
---
diff --git a/english/aspose.cells/emfrendersetting/_index.md b/english/aspose.cells/emfrendersetting/_index.md
index b2c4cfbd77..49fe3293f2 100644
--- a/english/aspose.cells/emfrendersetting/_index.md
+++ b/english/aspose.cells/emfrendersetting/_index.md
@@ -3,7 +3,7 @@ title: EmfRenderSetting enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2130
+weight: 2140
url: /aspose.cells/emfrendersetting/
is_root: false
---
diff --git a/english/aspose.cells/encryptiontype/_index.md b/english/aspose.cells/encryptiontype/_index.md
index 2f4694a682..784b8c4183 100644
--- a/english/aspose.cells/encryptiontype/_index.md
+++ b/english/aspose.cells/encryptiontype/_index.md
@@ -3,7 +3,7 @@ title: EncryptionType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2140
+weight: 2150
url: /aspose.cells/encryptiontype/
is_root: false
---
diff --git a/english/aspose.cells/errorcellvaluetype/_index.md b/english/aspose.cells/errorcellvaluetype/_index.md
index 514272f483..47b9539563 100644
--- a/english/aspose.cells/errorcellvaluetype/_index.md
+++ b/english/aspose.cells/errorcellvaluetype/_index.md
@@ -3,7 +3,7 @@ title: ErrorCellValueType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2150
+weight: 2160
url: /aspose.cells/errorcellvaluetype/
is_root: false
---
diff --git a/english/aspose.cells/errorcheckoption/_index.md b/english/aspose.cells/errorcheckoption/_index.md
index 93e1a6a1a0..d284dd7438 100644
--- a/english/aspose.cells/errorcheckoption/_index.md
+++ b/english/aspose.cells/errorcheckoption/_index.md
@@ -3,7 +3,7 @@ title: ErrorCheckOption class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 580
+weight: 590
url: /aspose.cells/errorcheckoption/
is_root: false
---
diff --git a/english/aspose.cells/errorcheckoptioncollection/_index.md b/english/aspose.cells/errorcheckoptioncollection/_index.md
index 5aa31ba9d5..0f54da2bff 100644
--- a/english/aspose.cells/errorcheckoptioncollection/_index.md
+++ b/english/aspose.cells/errorcheckoptioncollection/_index.md
@@ -3,7 +3,7 @@ title: ErrorCheckOptionCollection class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 590
+weight: 600
url: /aspose.cells/errorcheckoptioncollection/
is_root: false
---
diff --git a/english/aspose.cells/errorchecktype/_index.md b/english/aspose.cells/errorchecktype/_index.md
index bd6d0173af..dbafde2488 100644
--- a/english/aspose.cells/errorchecktype/_index.md
+++ b/english/aspose.cells/errorchecktype/_index.md
@@ -3,7 +3,7 @@ title: ErrorCheckType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2160
+weight: 2170
url: /aspose.cells/errorchecktype/
is_root: false
---
diff --git a/english/aspose.cells/exceptiontype/_index.md b/english/aspose.cells/exceptiontype/_index.md
index 42c2181128..e87e2f7855 100644
--- a/english/aspose.cells/exceptiontype/_index.md
+++ b/english/aspose.cells/exceptiontype/_index.md
@@ -1,50 +1,54 @@
----
-title: ExceptionType enumeration
-second_title: Aspose.Cells for Python via .NET API References
-description:
-type: docs
-weight: 2170
-url: /aspose.cells/exceptiontype/
-is_root: false
+---
+title: ExceptionType enumeration
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 2180
+url: /aspose.cells/exceptiontype/
+is_root: false
---
-
+
## ExceptionType enumeration
-
+
Represents custom exception type code.
-
+
The ExceptionType type exposes the following members:
-
-### Fields
-| Field | Description |
-| :- | :- |
-| CHART | Invalid chart setting. |
-| DATA_TYPE | Invalid data type setting. |
-| DATA_VALIDATION | Invalid data validation setting. |
-| CONDITIONAL_FORMATTING | Invalid data validation setting. |
-| FILE_FORMAT | Invalid file format. |
-| FORMULA | Invalid formula. |
-| INVALID_DATA | Invalid data. |
-| INVALID_OPERATOR | Invalid operator. |
-| INCORRECT_PASSWORD | Incorrect password. |
-| LICENSE | License related errors. |
-| LIMITATION | Out of MS Excel limitation error. |
-| PAGE_SETUP | Invalid page setup setting. |
-| PIVOT_TABLE | Invalid pivotTable setting. |
-| SHAPE | Invalid drawing object setting. |
-| SPARKLINE | Invalid sparkline object setting. |
-| SHEET_NAME | Invalid worksheet name. |
-| SHEET_TYPE | Invalid worksheet type. |
-| INTERRUPTED | The process is interrupted. |
-| IO | The file is invalid. |
-| PERMISSION | Permission is required to open this file. |
-| UNSUPPORTED_FEATURE | Unsupported feature. |
-| UNSUPPORTED_STREAM | Unsupported stream to be opened. |
-| UNDISCLOSED_INFORMATION | Files contains some undisclosed information. |
-| FILE_CORRUPTED | File content is corrupted. |
-
-
-
-### See Also
-* module [`aspose.cells`](..)
+
+### Fields
+| Field | Description |
+| :- | :- |
+| CHART | Invalid chart setting. |
+| DATA_TYPE | Invalid data type setting. |
+| DATA_VALIDATION | Invalid data validation setting. |
+| CONDITIONAL_FORMATTING | Invalid data validation setting. |
+| FILE_FORMAT | Invalid file format. |
+| FORMULA | Invalid formula. |
+| INVALID_DATA | Invalid data. |
+| INVALID_OPERATOR | Invalid operator. |
+| INCORRECT_PASSWORD | Incorrect password. |
+| LICENSE | License related errors. |
+| LIMITATION | Out of MS Excel limitation error. |
+| PAGE_SETUP | Invalid page setup setting. |
+| PIVOT_TABLE | Invalid pivotTable setting. |
+| SHAPE | Invalid drawing object setting. |
+| SPARKLINE | Invalid sparkline object setting. |
+| SHEET_NAME | Invalid worksheet name. |
+| SHEET_TYPE | Invalid worksheet type. |
+| INTERRUPTED | The process is interrupted. |
+| IO | The file is invalid. |
+| PERMISSION | Permission is required to open this file. |
+| UNSUPPORTED_FEATURE | Unsupported feature. |
+| UNSUPPORTED_STREAM | Unsupported stream to be opened. |
+| UNDISCLOSED_INFORMATION | Files contains some undisclosed information. |
+| FILE_CORRUPTED | File content is corrupted. |
+| DEFINED_NAME | Invalid defined name |
+| FONT | Invalid font |
+| AUTO_FILTER | Invalid auto filter setting. |
+| FONT_SUBSTITUTION | Font substitution warning type
when a font has not been found, this warning type can be get. |
+
+
+
+### See Also
+* module [`aspose.cells`](..)
diff --git a/english/aspose.cells/exportobjectevent/_index.md b/english/aspose.cells/exportobjectevent/_index.md
index 601b55198a..3ae1f71c71 100644
--- a/english/aspose.cells/exportobjectevent/_index.md
+++ b/english/aspose.cells/exportobjectevent/_index.md
@@ -3,7 +3,7 @@ title: ExportObjectEvent class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 600
+weight: 610
url: /aspose.cells/exportobjectevent/
is_root: false
---
diff --git a/english/aspose.cells/exporttableoptions/_index.md b/english/aspose.cells/exporttableoptions/_index.md
index b5566d334a..68229e26c1 100644
--- a/english/aspose.cells/exporttableoptions/_index.md
+++ b/english/aspose.cells/exporttableoptions/_index.md
@@ -3,7 +3,7 @@ title: ExportTableOptions class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 610
+weight: 620
url: /aspose.cells/exporttableoptions/
is_root: false
---
diff --git a/english/aspose.cells/externallink/_index.md b/english/aspose.cells/externallink/_index.md
index 42959ea565..25bb0ab2ac 100644
--- a/english/aspose.cells/externallink/_index.md
+++ b/english/aspose.cells/externallink/_index.md
@@ -3,7 +3,7 @@ title: ExternalLink class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 620
+weight: 630
url: /aspose.cells/externallink/
is_root: false
---
diff --git a/english/aspose.cells/externallinkcollection/_index.md b/english/aspose.cells/externallinkcollection/_index.md
index 470b3190e6..46bb9bf05e 100644
--- a/english/aspose.cells/externallinkcollection/_index.md
+++ b/english/aspose.cells/externallinkcollection/_index.md
@@ -3,7 +3,7 @@ title: ExternalLinkCollection class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 630
+weight: 640
url: /aspose.cells/externallinkcollection/
is_root: false
---
diff --git a/english/aspose.cells/externallinktype/_index.md b/english/aspose.cells/externallinktype/_index.md
index 672144c9a6..fb59229111 100644
--- a/english/aspose.cells/externallinktype/_index.md
+++ b/english/aspose.cells/externallinktype/_index.md
@@ -3,7 +3,7 @@ title: ExternalLinkType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2180
+weight: 2190
url: /aspose.cells/externallinktype/
is_root: false
---
diff --git a/english/aspose.cells/filefontsource/_index.md b/english/aspose.cells/filefontsource/_index.md
index 3e9fb83ca5..a57c4ec3d2 100644
--- a/english/aspose.cells/filefontsource/_index.md
+++ b/english/aspose.cells/filefontsource/_index.md
@@ -3,7 +3,7 @@ title: FileFontSource class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 640
+weight: 650
url: /aspose.cells/filefontsource/
is_root: false
---
diff --git a/english/aspose.cells/fileformatinfo/_index.md b/english/aspose.cells/fileformatinfo/_index.md
index ad79765847..fbdd13371e 100644
--- a/english/aspose.cells/fileformatinfo/_index.md
+++ b/english/aspose.cells/fileformatinfo/_index.md
@@ -3,7 +3,7 @@ title: FileFormatInfo class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 650
+weight: 660
url: /aspose.cells/fileformatinfo/
is_root: false
---
diff --git a/english/aspose.cells/fileformattype/_index.md b/english/aspose.cells/fileformattype/_index.md
index 428ee0b50a..e176aa4c60 100644
--- a/english/aspose.cells/fileformattype/_index.md
+++ b/english/aspose.cells/fileformattype/_index.md
@@ -3,7 +3,7 @@ title: FileFormatType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2190
+weight: 2200
url: /aspose.cells/fileformattype/
is_root: false
---
diff --git a/english/aspose.cells/fileformatutil/_index.md b/english/aspose.cells/fileformatutil/_index.md
index bcd66f7a93..478aeae916 100644
--- a/english/aspose.cells/fileformatutil/_index.md
+++ b/english/aspose.cells/fileformatutil/_index.md
@@ -3,7 +3,7 @@ title: FileFormatUtil class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 660
+weight: 670
url: /aspose.cells/fileformatutil/
is_root: false
---
diff --git a/english/aspose.cells/filtercategory/_index.md b/english/aspose.cells/filtercategory/_index.md
new file mode 100644
index 0000000000..01bfe443cd
--- /dev/null
+++ b/english/aspose.cells/filtercategory/_index.md
@@ -0,0 +1,31 @@
+---
+title: FilterCategory enumeration
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 2210
+url: /aspose.cells/filtercategory/
+is_root: false
+---
+
+## FilterCategory enumeration
+
+Represents the category of the filter.
+
+
+
+The FilterCategory type exposes the following members:
+
+### Fields
+| Field | Description |
+| :- | :- |
+| NONE | No Filter. |
+| LABEL | Caption Filter. |
+| NUMBER_VALUE | Number Value Filter. |
+| DATE | Date Value Filter. |
+| TOP10 | Top10 Value Filter. |
+
+
+
+### See Also
+* module [`aspose.cells`](..)
diff --git a/english/aspose.cells/filtercolumn/_index.md b/english/aspose.cells/filtercolumn/_index.md
index 6dc1cf8892..c7a43fd1fa 100644
--- a/english/aspose.cells/filtercolumn/_index.md
+++ b/english/aspose.cells/filtercolumn/_index.md
@@ -3,7 +3,7 @@ title: FilterColumn class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 670
+weight: 680
url: /aspose.cells/filtercolumn/
is_root: false
---
diff --git a/english/aspose.cells/filtercolumncollection/_index.md b/english/aspose.cells/filtercolumncollection/_index.md
index b37b0000d5..04e6c0da5e 100644
--- a/english/aspose.cells/filtercolumncollection/_index.md
+++ b/english/aspose.cells/filtercolumncollection/_index.md
@@ -3,7 +3,7 @@ title: FilterColumnCollection class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 680
+weight: 690
url: /aspose.cells/filtercolumncollection/
is_root: false
---
diff --git a/english/aspose.cells/filteroperatortype/_index.md b/english/aspose.cells/filteroperatortype/_index.md
index f0f234d405..54caf702ec 100644
--- a/english/aspose.cells/filteroperatortype/_index.md
+++ b/english/aspose.cells/filteroperatortype/_index.md
@@ -3,7 +3,7 @@ title: FilterOperatorType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2200
+weight: 2220
url: /aspose.cells/filteroperatortype/
is_root: false
---
@@ -30,6 +30,8 @@ The FilterOperatorType type exposes the following members:
| ENDS_WITH | Ends with the text. |
| CONTAINS | Contains the text. |
| NOT_CONTAINS | Not contains the text. |
+| NOT_BEGINS_WITH | Not begins with the text. |
+| NOT_ENDS_WITH | Not ends with the text. |
diff --git a/english/aspose.cells/filtertype/_index.md b/english/aspose.cells/filtertype/_index.md
index a9dd8a5ff8..045a97af68 100644
--- a/english/aspose.cells/filtertype/_index.md
+++ b/english/aspose.cells/filtertype/_index.md
@@ -3,7 +3,7 @@ title: FilterType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2210
+weight: 2230
url: /aspose.cells/filtertype/
is_root: false
---
diff --git a/english/aspose.cells/findoptions/_index.md b/english/aspose.cells/findoptions/_index.md
index 2b116cdc93..3f076699fc 100644
--- a/english/aspose.cells/findoptions/_index.md
+++ b/english/aspose.cells/findoptions/_index.md
@@ -3,7 +3,7 @@ title: FindOptions class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 690
+weight: 700
url: /aspose.cells/findoptions/
is_root: false
---
diff --git a/english/aspose.cells/folderfontsource/_index.md b/english/aspose.cells/folderfontsource/_index.md
index 3c4eba41b3..403040e43e 100644
--- a/english/aspose.cells/folderfontsource/_index.md
+++ b/english/aspose.cells/folderfontsource/_index.md
@@ -3,7 +3,7 @@ title: FolderFontSource class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 700
+weight: 710
url: /aspose.cells/folderfontsource/
is_root: false
---
diff --git a/english/aspose.cells/font/_index.md b/english/aspose.cells/font/_index.md
index e056a2b3de..2734199662 100644
--- a/english/aspose.cells/font/_index.md
+++ b/english/aspose.cells/font/_index.md
@@ -3,7 +3,7 @@ title: Font class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 710
+weight: 720
url: /aspose.cells/font/
is_root: false
---
diff --git a/english/aspose.cells/fontconfigs/_index.md b/english/aspose.cells/fontconfigs/_index.md
index f6f4ea55ca..50f8b8c21a 100644
--- a/english/aspose.cells/fontconfigs/_index.md
+++ b/english/aspose.cells/fontconfigs/_index.md
@@ -3,7 +3,7 @@ title: FontConfigs class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 720
+weight: 730
url: /aspose.cells/fontconfigs/
is_root: false
---
diff --git a/english/aspose.cells/fontconfigs/default_font_name/_index.md b/english/aspose.cells/fontconfigs/default_font_name/_index.md
index 5f471b02a5..ded510425d 100644
--- a/english/aspose.cells/fontconfigs/default_font_name/_index.md
+++ b/english/aspose.cells/fontconfigs/default_font_name/_index.md
@@ -12,15 +12,6 @@ is_root: false
Gets or sets the default font name.
-### Definition:
-```python
-@property
-def default_font_name(self):
- ...
-@default_font_name.setter
-def default_font_name(self, value):
- ...
-```
### See Also
* module [`aspose.cells`](../../)
diff --git a/english/aspose.cells/fontconfigs/prefer_system_font_substitutes/_index.md b/english/aspose.cells/fontconfigs/prefer_system_font_substitutes/_index.md
index 427fb0303b..279ec14f31 100644
--- a/english/aspose.cells/fontconfigs/prefer_system_font_substitutes/_index.md
+++ b/english/aspose.cells/fontconfigs/prefer_system_font_substitutes/_index.md
@@ -14,15 +14,6 @@ is_root: false
Indicate whether to use system font substitutes first or not when a font is not presented and the substitute of this font is not set.
e.g. On Ubuntu, "Arial" font is generally substituted by "Liberation Sans".
Default value is false.
-### Definition:
-```python
-@property
-def prefer_system_font_substitutes(self):
- ...
-@prefer_system_font_substitutes.setter
-def prefer_system_font_substitutes(self, value):
- ...
-```
### See Also
* module [`aspose.cells`](../../)
diff --git a/english/aspose.cells/fontschemetype/_index.md b/english/aspose.cells/fontschemetype/_index.md
index 48d7f3a101..f27f1d8377 100644
--- a/english/aspose.cells/fontschemetype/_index.md
+++ b/english/aspose.cells/fontschemetype/_index.md
@@ -3,7 +3,7 @@ title: FontSchemeType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2220
+weight: 2240
url: /aspose.cells/fontschemetype/
is_root: false
---
diff --git a/english/aspose.cells/fontsetting/_index.md b/english/aspose.cells/fontsetting/_index.md
index 800e68b0a9..8c1e030a0f 100644
--- a/english/aspose.cells/fontsetting/_index.md
+++ b/english/aspose.cells/fontsetting/_index.md
@@ -3,7 +3,7 @@ title: FontSetting class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 730
+weight: 740
url: /aspose.cells/fontsetting/
is_root: false
---
diff --git a/english/aspose.cells/fontsourcebase/_index.md b/english/aspose.cells/fontsourcebase/_index.md
index a47c5f1e2c..c7a7ca4e9c 100644
--- a/english/aspose.cells/fontsourcebase/_index.md
+++ b/english/aspose.cells/fontsourcebase/_index.md
@@ -3,7 +3,7 @@ title: FontSourceBase class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 740
+weight: 750
url: /aspose.cells/fontsourcebase/
is_root: false
---
diff --git a/english/aspose.cells/fontsourcetype/_index.md b/english/aspose.cells/fontsourcetype/_index.md
index 7b8323cfb9..c31d42c8dc 100644
--- a/english/aspose.cells/fontsourcetype/_index.md
+++ b/english/aspose.cells/fontsourcetype/_index.md
@@ -3,7 +3,7 @@ title: FontSourceType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2230
+weight: 2250
url: /aspose.cells/fontsourcetype/
is_root: false
---
diff --git a/english/aspose.cells/fontunderlinetype/_index.md b/english/aspose.cells/fontunderlinetype/_index.md
index e0096ad58d..91f4674ab5 100644
--- a/english/aspose.cells/fontunderlinetype/_index.md
+++ b/english/aspose.cells/fontunderlinetype/_index.md
@@ -3,7 +3,7 @@ title: FontUnderlineType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2240
+weight: 2260
url: /aspose.cells/fontunderlinetype/
is_root: false
---
diff --git a/english/aspose.cells/formatcondition/_index.md b/english/aspose.cells/formatcondition/_index.md
index 5fb8858dd9..294b0f67f3 100644
--- a/english/aspose.cells/formatcondition/_index.md
+++ b/english/aspose.cells/formatcondition/_index.md
@@ -3,7 +3,7 @@ title: FormatCondition class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 750
+weight: 760
url: /aspose.cells/formatcondition/
is_root: false
---
diff --git a/english/aspose.cells/formatconditioncollection/_index.md b/english/aspose.cells/formatconditioncollection/_index.md
index 83251e9c79..833404a781 100644
--- a/english/aspose.cells/formatconditioncollection/_index.md
+++ b/english/aspose.cells/formatconditioncollection/_index.md
@@ -3,7 +3,7 @@ title: FormatConditionCollection class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 760
+weight: 770
url: /aspose.cells/formatconditioncollection/
is_root: false
---
diff --git a/english/aspose.cells/formatconditiontype/_index.md b/english/aspose.cells/formatconditiontype/_index.md
index a40c18a96a..057096b131 100644
--- a/english/aspose.cells/formatconditiontype/_index.md
+++ b/english/aspose.cells/formatconditiontype/_index.md
@@ -3,7 +3,7 @@ title: FormatConditionType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2250
+weight: 2270
url: /aspose.cells/formatconditiontype/
is_root: false
---
diff --git a/english/aspose.cells/formatconditionvaluetype/_index.md b/english/aspose.cells/formatconditionvaluetype/_index.md
index 766afb0890..2b1403971b 100644
--- a/english/aspose.cells/formatconditionvaluetype/_index.md
+++ b/english/aspose.cells/formatconditionvaluetype/_index.md
@@ -3,7 +3,7 @@ title: FormatConditionValueType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2260
+weight: 2280
url: /aspose.cells/formatconditionvaluetype/
is_root: false
---
diff --git a/english/aspose.cells/formulaparseoptions/_index.md b/english/aspose.cells/formulaparseoptions/_index.md
index 477c83af7d..b98c8fc988 100644
--- a/english/aspose.cells/formulaparseoptions/_index.md
+++ b/english/aspose.cells/formulaparseoptions/_index.md
@@ -3,7 +3,7 @@ title: FormulaParseOptions class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 770
+weight: 780
url: /aspose.cells/formulaparseoptions/
is_root: false
---
diff --git a/english/aspose.cells/formulasettings/_index.md b/english/aspose.cells/formulasettings/_index.md
index 6bc4ed732f..f7527a9d82 100644
--- a/english/aspose.cells/formulasettings/_index.md
+++ b/english/aspose.cells/formulasettings/_index.md
@@ -3,7 +3,7 @@ title: FormulaSettings class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 780
+weight: 790
url: /aspose.cells/formulasettings/
is_root: false
---
diff --git a/english/aspose.cells/globalizationsettings/_index.md b/english/aspose.cells/globalizationsettings/_index.md
index 190f139879..645c60bbea 100644
--- a/english/aspose.cells/globalizationsettings/_index.md
+++ b/english/aspose.cells/globalizationsettings/_index.md
@@ -3,7 +3,7 @@ title: GlobalizationSettings class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 790
+weight: 800
url: /aspose.cells/globalizationsettings/
is_root: false
---
diff --git a/english/aspose.cells/gridlinetype/_index.md b/english/aspose.cells/gridlinetype/_index.md
index 2c634a2512..f5cf84de1f 100644
--- a/english/aspose.cells/gridlinetype/_index.md
+++ b/english/aspose.cells/gridlinetype/_index.md
@@ -3,7 +3,7 @@ title: GridlineType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2270
+weight: 2290
url: /aspose.cells/gridlinetype/
is_root: false
---
diff --git a/english/aspose.cells/headerfootercommand/_index.md b/english/aspose.cells/headerfootercommand/_index.md
index 469225a4cd..e78e9a02a1 100644
--- a/english/aspose.cells/headerfootercommand/_index.md
+++ b/english/aspose.cells/headerfootercommand/_index.md
@@ -3,7 +3,7 @@ title: HeaderFooterCommand class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 800
+weight: 810
url: /aspose.cells/headerfootercommand/
is_root: false
---
diff --git a/english/aspose.cells/headerfootercommandtype/_index.md b/english/aspose.cells/headerfootercommandtype/_index.md
index 2544a73a33..a932f22d97 100644
--- a/english/aspose.cells/headerfootercommandtype/_index.md
+++ b/english/aspose.cells/headerfootercommandtype/_index.md
@@ -3,7 +3,7 @@ title: HeaderFooterCommandType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2280
+weight: 2300
url: /aspose.cells/headerfootercommandtype/
is_root: false
---
diff --git a/english/aspose.cells/horizontalpagebreak/_index.md b/english/aspose.cells/horizontalpagebreak/_index.md
index e0a9e6a423..6c3c6791ba 100644
--- a/english/aspose.cells/horizontalpagebreak/_index.md
+++ b/english/aspose.cells/horizontalpagebreak/_index.md
@@ -3,7 +3,7 @@ title: HorizontalPageBreak class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 810
+weight: 820
url: /aspose.cells/horizontalpagebreak/
is_root: false
---
diff --git a/english/aspose.cells/horizontalpagebreakcollection/_index.md b/english/aspose.cells/horizontalpagebreakcollection/_index.md
index 5c066bf97e..3cf05b49f4 100644
--- a/english/aspose.cells/horizontalpagebreakcollection/_index.md
+++ b/english/aspose.cells/horizontalpagebreakcollection/_index.md
@@ -3,7 +3,7 @@ title: HorizontalPageBreakCollection class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 820
+weight: 830
url: /aspose.cells/horizontalpagebreakcollection/
is_root: false
---
diff --git a/english/aspose.cells/htmlcrosstype/_index.md b/english/aspose.cells/htmlcrosstype/_index.md
index cfdea600f9..717e07e2e4 100644
--- a/english/aspose.cells/htmlcrosstype/_index.md
+++ b/english/aspose.cells/htmlcrosstype/_index.md
@@ -3,7 +3,7 @@ title: HtmlCrossType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2290
+weight: 2310
url: /aspose.cells/htmlcrosstype/
is_root: false
---
diff --git a/english/aspose.cells/htmlexportdataoptions/_index.md b/english/aspose.cells/htmlexportdataoptions/_index.md
index b5482b9f8a..24212b2d1e 100644
--- a/english/aspose.cells/htmlexportdataoptions/_index.md
+++ b/english/aspose.cells/htmlexportdataoptions/_index.md
@@ -3,7 +3,7 @@ title: HtmlExportDataOptions enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2300
+weight: 2320
url: /aspose.cells/htmlexportdataoptions/
is_root: false
---
diff --git a/english/aspose.cells/htmlhiddencoldisplaytype/_index.md b/english/aspose.cells/htmlhiddencoldisplaytype/_index.md
index 58506f67cf..eb5dd62b4f 100644
--- a/english/aspose.cells/htmlhiddencoldisplaytype/_index.md
+++ b/english/aspose.cells/htmlhiddencoldisplaytype/_index.md
@@ -3,7 +3,7 @@ title: HtmlHiddenColDisplayType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2310
+weight: 2330
url: /aspose.cells/htmlhiddencoldisplaytype/
is_root: false
---
diff --git a/english/aspose.cells/htmlhiddenrowdisplaytype/_index.md b/english/aspose.cells/htmlhiddenrowdisplaytype/_index.md
index e096df816e..4e8b473791 100644
--- a/english/aspose.cells/htmlhiddenrowdisplaytype/_index.md
+++ b/english/aspose.cells/htmlhiddenrowdisplaytype/_index.md
@@ -3,7 +3,7 @@ title: HtmlHiddenRowDisplayType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2320
+weight: 2340
url: /aspose.cells/htmlhiddenrowdisplaytype/
is_root: false
---
diff --git a/english/aspose.cells/htmllinktargettype/_index.md b/english/aspose.cells/htmllinktargettype/_index.md
index 9ed90d8009..dd6c9c316b 100644
--- a/english/aspose.cells/htmllinktargettype/_index.md
+++ b/english/aspose.cells/htmllinktargettype/_index.md
@@ -3,7 +3,7 @@ title: HtmlLinkTargetType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2330
+weight: 2350
url: /aspose.cells/htmllinktargettype/
is_root: false
---
diff --git a/english/aspose.cells/htmlloadoptions/_index.md b/english/aspose.cells/htmlloadoptions/_index.md
index ffd0d5a658..cb90692843 100644
--- a/english/aspose.cells/htmlloadoptions/_index.md
+++ b/english/aspose.cells/htmlloadoptions/_index.md
@@ -3,7 +3,7 @@ title: HtmlLoadOptions class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 830
+weight: 840
url: /aspose.cells/htmlloadoptions/
is_root: false
---
diff --git a/english/aspose.cells/htmlofficemathoutputtype/_index.md b/english/aspose.cells/htmlofficemathoutputtype/_index.md
index f026749caf..5b127af08f 100644
--- a/english/aspose.cells/htmlofficemathoutputtype/_index.md
+++ b/english/aspose.cells/htmlofficemathoutputtype/_index.md
@@ -3,7 +3,7 @@ title: HtmlOfficeMathOutputType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2340
+weight: 2360
url: /aspose.cells/htmlofficemathoutputtype/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/_index.md b/english/aspose.cells/htmlsaveoptions/_index.md
index 9b7823daf2..291b990862 100644
--- a/english/aspose.cells/htmlsaveoptions/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/_index.md
@@ -3,7 +3,7 @@ title: HtmlSaveOptions class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 840
+weight: 850
url: /aspose.cells/htmlsaveoptions/
is_root: false
---
@@ -41,6 +41,7 @@ The HtmlSaveOptions type exposes the following members:
| [sort_external_names](/cells/python-net/aspose.cells/htmlsaveoptions/sort_external_names) | Indicates whether sorting external defined names before saving file. |
| [refresh_chart_cache](/cells/python-net/aspose.cells/htmlsaveoptions/refresh_chart_cache) | Indicates whether refreshing chart cache data |
| [warning_callback](/cells/python-net/aspose.cells/htmlsaveoptions/warning_callback) | Gets or sets warning callback. |
+| [check_excel_restriction](/cells/python-net/aspose.cells/htmlsaveoptions/check_excel_restriction) | Whether check restriction of excel file when user modify cells related objects.
For example, excel does not allow inputting string value longer than 32K.
When you input a value longer than 32K, it will be truncated. |
| [update_smart_art](/cells/python-net/aspose.cells/htmlsaveoptions/update_smart_art) | Indicates whether updating smart art setting.
The default value is false. |
| [encrypt_document_properties](/cells/python-net/aspose.cells/htmlsaveoptions/encrypt_document_properties) | Indicates whether encrypt document properties when saving as .xls file.
The default value is true. |
| [ignore_invisible_shapes](/cells/python-net/aspose.cells/htmlsaveoptions/ignore_invisible_shapes) | Indicate whether exporting those not visible shapes |
@@ -109,6 +110,7 @@ The HtmlSaveOptions type exposes the following members:
| [encode_entity_as_code](/cells/python-net/aspose.cells/htmlsaveoptions/encode_entity_as_code) | Indicates whether the html character entities are replaced with decimal code.
(e.g. " " is replaced with " ").
The default value is false. |
| [office_math_output_mode](/cells/python-net/aspose.cells/htmlsaveoptions/office_math_output_mode) | Indicates how export OfficeMath objects to HTML, Default value is Image. |
| [cell_name_attribute](/cells/python-net/aspose.cells/htmlsaveoptions/cell_name_attribute) | Specifies the attribute that indicates the CellName to be written.
(e.g. If the value is "id", then for cell "A1", the output will be: | ).
The default value is null. |
+| [disable_css](/cells/python-net/aspose.cells/htmlsaveoptions/disable_css) | Indicates whether only inline styles are applied, without relying on CSS.
The default value is false. |
diff --git a/english/aspose.cells/htmlsaveoptions/check_excel_restriction/_index.md b/english/aspose.cells/htmlsaveoptions/check_excel_restriction/_index.md
new file mode 100644
index 0000000000..eaf52bb3dd
--- /dev/null
+++ b/english/aspose.cells/htmlsaveoptions/check_excel_restriction/_index.md
@@ -0,0 +1,29 @@
+---
+title: check_excel_restriction property
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 110
+url: /aspose.cells/htmlsaveoptions/check_excel_restriction/
+is_root: false
+---
+
+## check_excel_restriction property
+
+
+Whether check restriction of excel file when user modify cells related objects.
+For example, excel does not allow inputting string value longer than 32K.
+When you input a value longer than 32K, it will be truncated.
+### Definition:
+```python
+@property
+def check_excel_restriction(self):
+ ...
+@check_excel_restriction.setter
+def check_excel_restriction(self, value):
+ ...
+```
+
+### See Also
+* module [`aspose.cells`](../../)
+* class [`HtmlSaveOptions`](/cells/python-net/aspose.cells/htmlsaveoptions)
diff --git a/english/aspose.cells/htmlsaveoptions/clear_data/_index.md b/english/aspose.cells/htmlsaveoptions/clear_data/_index.md
index c0f7ab109c..cda865e1cf 100644
--- a/english/aspose.cells/htmlsaveoptions/clear_data/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/clear_data/_index.md
@@ -3,7 +3,7 @@ title: clear_data property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 110
+weight: 120
url: /aspose.cells/htmlsaveoptions/clear_data/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/create_directory/_index.md b/english/aspose.cells/htmlsaveoptions/create_directory/_index.md
index a64dfbf327..6df254d91f 100644
--- a/english/aspose.cells/htmlsaveoptions/create_directory/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/create_directory/_index.md
@@ -3,7 +3,7 @@ title: create_directory property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 120
+weight: 130
url: /aspose.cells/htmlsaveoptions/create_directory/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/css_styles/_index.md b/english/aspose.cells/htmlsaveoptions/css_styles/_index.md
index 5dbb154ec0..f6f6bb778d 100644
--- a/english/aspose.cells/htmlsaveoptions/css_styles/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/css_styles/_index.md
@@ -3,7 +3,7 @@ title: css_styles property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 130
+weight: 140
url: /aspose.cells/htmlsaveoptions/css_styles/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/default_font_name/_index.md b/english/aspose.cells/htmlsaveoptions/default_font_name/_index.md
index 4711d97b47..7797be8c91 100644
--- a/english/aspose.cells/htmlsaveoptions/default_font_name/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/default_font_name/_index.md
@@ -3,7 +3,7 @@ title: default_font_name property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 140
+weight: 150
url: /aspose.cells/htmlsaveoptions/default_font_name/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/disable_css/_index.md b/english/aspose.cells/htmlsaveoptions/disable_css/_index.md
new file mode 100644
index 0000000000..2a74eefca1
--- /dev/null
+++ b/english/aspose.cells/htmlsaveoptions/disable_css/_index.md
@@ -0,0 +1,28 @@
+---
+title: disable_css property
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 160
+url: /aspose.cells/htmlsaveoptions/disable_css/
+is_root: false
+---
+
+## disable_css property
+
+
+Indicates whether only inline styles are applied, without relying on CSS.
+The default value is false.
+### Definition:
+```python
+@property
+def disable_css(self):
+ ...
+@disable_css.setter
+def disable_css(self, value):
+ ...
+```
+
+### See Also
+* module [`aspose.cells`](../../)
+* class [`HtmlSaveOptions`](/cells/python-net/aspose.cells/htmlsaveoptions)
diff --git a/english/aspose.cells/htmlsaveoptions/disable_downlevel_revealed_comments/_index.md b/english/aspose.cells/htmlsaveoptions/disable_downlevel_revealed_comments/_index.md
index 4e61a2511b..a9ea77a53e 100644
--- a/english/aspose.cells/htmlsaveoptions/disable_downlevel_revealed_comments/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/disable_downlevel_revealed_comments/_index.md
@@ -3,7 +3,7 @@ title: disable_downlevel_revealed_comments property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 150
+weight: 170
url: /aspose.cells/htmlsaveoptions/disable_downlevel_revealed_comments/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/encode_entity_as_code/_index.md b/english/aspose.cells/htmlsaveoptions/encode_entity_as_code/_index.md
index 1f4be2aa8c..56bce0e197 100644
--- a/english/aspose.cells/htmlsaveoptions/encode_entity_as_code/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/encode_entity_as_code/_index.md
@@ -3,7 +3,7 @@ title: encode_entity_as_code property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 160
+weight: 180
url: /aspose.cells/htmlsaveoptions/encode_entity_as_code/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/encoding/_index.md b/english/aspose.cells/htmlsaveoptions/encoding/_index.md
index 3016a14242..f465029b11 100644
--- a/english/aspose.cells/htmlsaveoptions/encoding/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/encoding/_index.md
@@ -3,7 +3,7 @@ title: encoding property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 170
+weight: 190
url: /aspose.cells/htmlsaveoptions/encoding/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/encrypt_document_properties/_index.md b/english/aspose.cells/htmlsaveoptions/encrypt_document_properties/_index.md
index 596787900c..8f5371b3b2 100644
--- a/english/aspose.cells/htmlsaveoptions/encrypt_document_properties/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/encrypt_document_properties/_index.md
@@ -3,7 +3,7 @@ title: encrypt_document_properties property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 180
+weight: 200
url: /aspose.cells/htmlsaveoptions/encrypt_document_properties/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/exclude_unused_styles/_index.md b/english/aspose.cells/htmlsaveoptions/exclude_unused_styles/_index.md
index 2066c687b8..13c9780f25 100644
--- a/english/aspose.cells/htmlsaveoptions/exclude_unused_styles/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/exclude_unused_styles/_index.md
@@ -3,7 +3,7 @@ title: exclude_unused_styles property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 190
+weight: 210
url: /aspose.cells/htmlsaveoptions/exclude_unused_styles/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/export_active_worksheet_only/_index.md b/english/aspose.cells/htmlsaveoptions/export_active_worksheet_only/_index.md
index 5a726d3922..693f3519ca 100644
--- a/english/aspose.cells/htmlsaveoptions/export_active_worksheet_only/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/export_active_worksheet_only/_index.md
@@ -3,7 +3,7 @@ title: export_active_worksheet_only property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 200
+weight: 220
url: /aspose.cells/htmlsaveoptions/export_active_worksheet_only/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/export_area/_index.md b/english/aspose.cells/htmlsaveoptions/export_area/_index.md
index e4c9f6713d..72c66cd72e 100644
--- a/english/aspose.cells/htmlsaveoptions/export_area/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/export_area/_index.md
@@ -3,7 +3,7 @@ title: export_area property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 210
+weight: 230
url: /aspose.cells/htmlsaveoptions/export_area/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/export_bogus_row_data/_index.md b/english/aspose.cells/htmlsaveoptions/export_bogus_row_data/_index.md
index 7bb6380688..5d531be3e6 100644
--- a/english/aspose.cells/htmlsaveoptions/export_bogus_row_data/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/export_bogus_row_data/_index.md
@@ -3,7 +3,7 @@ title: export_bogus_row_data property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 220
+weight: 240
url: /aspose.cells/htmlsaveoptions/export_bogus_row_data/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/export_cell_coordinate/_index.md b/english/aspose.cells/htmlsaveoptions/export_cell_coordinate/_index.md
index ffed9c61f4..448cee017b 100644
--- a/english/aspose.cells/htmlsaveoptions/export_cell_coordinate/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/export_cell_coordinate/_index.md
@@ -3,7 +3,7 @@ title: export_cell_coordinate property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 230
+weight: 250
url: /aspose.cells/htmlsaveoptions/export_cell_coordinate/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/export_comments_type/_index.md b/english/aspose.cells/htmlsaveoptions/export_comments_type/_index.md
index 8c5ccf5ec1..efc6fbd304 100644
--- a/english/aspose.cells/htmlsaveoptions/export_comments_type/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/export_comments_type/_index.md
@@ -3,7 +3,7 @@ title: export_comments_type property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 240
+weight: 260
url: /aspose.cells/htmlsaveoptions/export_comments_type/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/export_data_options/_index.md b/english/aspose.cells/htmlsaveoptions/export_data_options/_index.md
index 80689a467e..24a77d87ad 100644
--- a/english/aspose.cells/htmlsaveoptions/export_data_options/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/export_data_options/_index.md
@@ -3,7 +3,7 @@ title: export_data_options property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 250
+weight: 270
url: /aspose.cells/htmlsaveoptions/export_data_options/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/export_document_properties/_index.md b/english/aspose.cells/htmlsaveoptions/export_document_properties/_index.md
index cf7b63f50c..67798be270 100644
--- a/english/aspose.cells/htmlsaveoptions/export_document_properties/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/export_document_properties/_index.md
@@ -3,7 +3,7 @@ title: export_document_properties property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 260
+weight: 280
url: /aspose.cells/htmlsaveoptions/export_document_properties/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/export_extra_headings/_index.md b/english/aspose.cells/htmlsaveoptions/export_extra_headings/_index.md
index 34381d1aff..26886ce84d 100644
--- a/english/aspose.cells/htmlsaveoptions/export_extra_headings/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/export_extra_headings/_index.md
@@ -3,7 +3,7 @@ title: export_extra_headings property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 270
+weight: 290
url: /aspose.cells/htmlsaveoptions/export_extra_headings/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/export_formula/_index.md b/english/aspose.cells/htmlsaveoptions/export_formula/_index.md
index 32e1583045..e444f3d44b 100644
--- a/english/aspose.cells/htmlsaveoptions/export_formula/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/export_formula/_index.md
@@ -3,7 +3,7 @@ title: export_formula property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 280
+weight: 300
url: /aspose.cells/htmlsaveoptions/export_formula/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/export_frame_scripts_and_properties/_index.md b/english/aspose.cells/htmlsaveoptions/export_frame_scripts_and_properties/_index.md
index 121b33322c..c30875c119 100644
--- a/english/aspose.cells/htmlsaveoptions/export_frame_scripts_and_properties/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/export_frame_scripts_and_properties/_index.md
@@ -3,7 +3,7 @@ title: export_frame_scripts_and_properties property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 290
+weight: 310
url: /aspose.cells/htmlsaveoptions/export_frame_scripts_and_properties/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/export_grid_lines/_index.md b/english/aspose.cells/htmlsaveoptions/export_grid_lines/_index.md
index 34bb538a35..bf736d47b2 100644
--- a/english/aspose.cells/htmlsaveoptions/export_grid_lines/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/export_grid_lines/_index.md
@@ -3,7 +3,7 @@ title: export_grid_lines property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 300
+weight: 320
url: /aspose.cells/htmlsaveoptions/export_grid_lines/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/export_headings/_index.md b/english/aspose.cells/htmlsaveoptions/export_headings/_index.md
index 578f271ea5..5e2df375cc 100644
--- a/english/aspose.cells/htmlsaveoptions/export_headings/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/export_headings/_index.md
@@ -3,7 +3,7 @@ title: export_headings property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 310
+weight: 330
url: /aspose.cells/htmlsaveoptions/export_headings/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/export_hidden_worksheet/_index.md b/english/aspose.cells/htmlsaveoptions/export_hidden_worksheet/_index.md
index c028f31485..6158c9789b 100644
--- a/english/aspose.cells/htmlsaveoptions/export_hidden_worksheet/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/export_hidden_worksheet/_index.md
@@ -3,7 +3,7 @@ title: export_hidden_worksheet property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 320
+weight: 340
url: /aspose.cells/htmlsaveoptions/export_hidden_worksheet/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/export_images_as_base64/_index.md b/english/aspose.cells/htmlsaveoptions/export_images_as_base64/_index.md
index 2d089195ea..44fa32ab01 100644
--- a/english/aspose.cells/htmlsaveoptions/export_images_as_base64/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/export_images_as_base64/_index.md
@@ -3,7 +3,7 @@ title: export_images_as_base64 property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 330
+weight: 350
url: /aspose.cells/htmlsaveoptions/export_images_as_base64/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/export_object_listener/_index.md b/english/aspose.cells/htmlsaveoptions/export_object_listener/_index.md
index a18be53172..85903db02e 100644
--- a/english/aspose.cells/htmlsaveoptions/export_object_listener/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/export_object_listener/_index.md
@@ -3,7 +3,7 @@ title: export_object_listener property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 340
+weight: 360
url: /aspose.cells/htmlsaveoptions/export_object_listener/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/export_page_footers/_index.md b/english/aspose.cells/htmlsaveoptions/export_page_footers/_index.md
index 5332074b78..66bb482b5a 100644
--- a/english/aspose.cells/htmlsaveoptions/export_page_footers/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/export_page_footers/_index.md
@@ -3,7 +3,7 @@ title: export_page_footers property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 350
+weight: 370
url: /aspose.cells/htmlsaveoptions/export_page_footers/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/export_page_headers/_index.md b/english/aspose.cells/htmlsaveoptions/export_page_headers/_index.md
index ab0fa06717..21007033f0 100644
--- a/english/aspose.cells/htmlsaveoptions/export_page_headers/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/export_page_headers/_index.md
@@ -3,7 +3,7 @@ title: export_page_headers property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 360
+weight: 380
url: /aspose.cells/htmlsaveoptions/export_page_headers/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/export_print_area_only/_index.md b/english/aspose.cells/htmlsaveoptions/export_print_area_only/_index.md
index 466c7882fa..790227ab0d 100644
--- a/english/aspose.cells/htmlsaveoptions/export_print_area_only/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/export_print_area_only/_index.md
@@ -3,7 +3,7 @@ title: export_print_area_only property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 370
+weight: 390
url: /aspose.cells/htmlsaveoptions/export_print_area_only/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/export_row_column_headings/_index.md b/english/aspose.cells/htmlsaveoptions/export_row_column_headings/_index.md
index 78db9b4eda..6e1e4a2e28 100644
--- a/english/aspose.cells/htmlsaveoptions/export_row_column_headings/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/export_row_column_headings/_index.md
@@ -3,7 +3,7 @@ title: export_row_column_headings property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 380
+weight: 400
url: /aspose.cells/htmlsaveoptions/export_row_column_headings/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/export_similar_border_style/_index.md b/english/aspose.cells/htmlsaveoptions/export_similar_border_style/_index.md
index cf1eb94e5b..a3597bfa17 100644
--- a/english/aspose.cells/htmlsaveoptions/export_similar_border_style/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/export_similar_border_style/_index.md
@@ -3,7 +3,7 @@ title: export_similar_border_style property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 390
+weight: 410
url: /aspose.cells/htmlsaveoptions/export_similar_border_style/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/export_single_tab/_index.md b/english/aspose.cells/htmlsaveoptions/export_single_tab/_index.md
index 3dcf82fb94..6ff127abcb 100644
--- a/english/aspose.cells/htmlsaveoptions/export_single_tab/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/export_single_tab/_index.md
@@ -3,7 +3,7 @@ title: export_single_tab property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 400
+weight: 420
url: /aspose.cells/htmlsaveoptions/export_single_tab/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/export_workbook_properties/_index.md b/english/aspose.cells/htmlsaveoptions/export_workbook_properties/_index.md
index e1680c0c88..c91488a732 100644
--- a/english/aspose.cells/htmlsaveoptions/export_workbook_properties/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/export_workbook_properties/_index.md
@@ -3,7 +3,7 @@ title: export_workbook_properties property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 410
+weight: 430
url: /aspose.cells/htmlsaveoptions/export_workbook_properties/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/export_worksheet_css_separately/_index.md b/english/aspose.cells/htmlsaveoptions/export_worksheet_css_separately/_index.md
index 85f30543f1..1435e6aabc 100644
--- a/english/aspose.cells/htmlsaveoptions/export_worksheet_css_separately/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/export_worksheet_css_separately/_index.md
@@ -3,7 +3,7 @@ title: export_worksheet_css_separately property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 420
+weight: 440
url: /aspose.cells/htmlsaveoptions/export_worksheet_css_separately/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/export_worksheet_properties/_index.md b/english/aspose.cells/htmlsaveoptions/export_worksheet_properties/_index.md
index 43d2063d45..01468671f2 100644
--- a/english/aspose.cells/htmlsaveoptions/export_worksheet_properties/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/export_worksheet_properties/_index.md
@@ -3,7 +3,7 @@ title: export_worksheet_properties property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 430
+weight: 450
url: /aspose.cells/htmlsaveoptions/export_worksheet_properties/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/file_path_provider/_index.md b/english/aspose.cells/htmlsaveoptions/file_path_provider/_index.md
index 744c02cb5d..1f136fc52a 100644
--- a/english/aspose.cells/htmlsaveoptions/file_path_provider/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/file_path_provider/_index.md
@@ -3,7 +3,7 @@ title: file_path_provider property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 440
+weight: 460
url: /aspose.cells/htmlsaveoptions/file_path_provider/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/format_data_ignore_column_width/_index.md b/english/aspose.cells/htmlsaveoptions/format_data_ignore_column_width/_index.md
index 6914ff3246..5ac91e1cc0 100644
--- a/english/aspose.cells/htmlsaveoptions/format_data_ignore_column_width/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/format_data_ignore_column_width/_index.md
@@ -3,7 +3,7 @@ title: format_data_ignore_column_width property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 450
+weight: 470
url: /aspose.cells/htmlsaveoptions/format_data_ignore_column_width/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/hidden_col_display_type/_index.md b/english/aspose.cells/htmlsaveoptions/hidden_col_display_type/_index.md
index c557ff4c4e..ba04ad8c93 100644
--- a/english/aspose.cells/htmlsaveoptions/hidden_col_display_type/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/hidden_col_display_type/_index.md
@@ -3,7 +3,7 @@ title: hidden_col_display_type property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 460
+weight: 480
url: /aspose.cells/htmlsaveoptions/hidden_col_display_type/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/hidden_row_display_type/_index.md b/english/aspose.cells/htmlsaveoptions/hidden_row_display_type/_index.md
index c262c2cb5e..8f0272008b 100644
--- a/english/aspose.cells/htmlsaveoptions/hidden_row_display_type/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/hidden_row_display_type/_index.md
@@ -3,7 +3,7 @@ title: hidden_row_display_type property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 470
+weight: 490
url: /aspose.cells/htmlsaveoptions/hidden_row_display_type/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/hide_overflow_wrapped_text/_index.md b/english/aspose.cells/htmlsaveoptions/hide_overflow_wrapped_text/_index.md
index 7227918e1b..ca0069841d 100644
--- a/english/aspose.cells/htmlsaveoptions/hide_overflow_wrapped_text/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/hide_overflow_wrapped_text/_index.md
@@ -3,7 +3,7 @@ title: hide_overflow_wrapped_text property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 480
+weight: 500
url: /aspose.cells/htmlsaveoptions/hide_overflow_wrapped_text/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/html_cross_string_type/_index.md b/english/aspose.cells/htmlsaveoptions/html_cross_string_type/_index.md
index cbd309d062..acc008e76b 100644
--- a/english/aspose.cells/htmlsaveoptions/html_cross_string_type/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/html_cross_string_type/_index.md
@@ -3,7 +3,7 @@ title: html_cross_string_type property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 490
+weight: 510
url: /aspose.cells/htmlsaveoptions/html_cross_string_type/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/ignore_invisible_shapes/_index.md b/english/aspose.cells/htmlsaveoptions/ignore_invisible_shapes/_index.md
index b8b0245aa6..0805cd1fa3 100644
--- a/english/aspose.cells/htmlsaveoptions/ignore_invisible_shapes/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/ignore_invisible_shapes/_index.md
@@ -3,7 +3,7 @@ title: ignore_invisible_shapes property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 500
+weight: 520
url: /aspose.cells/htmlsaveoptions/ignore_invisible_shapes/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/image_options/_index.md b/english/aspose.cells/htmlsaveoptions/image_options/_index.md
index a43edc9622..0af7ec3c26 100644
--- a/english/aspose.cells/htmlsaveoptions/image_options/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/image_options/_index.md
@@ -3,7 +3,7 @@ title: image_options property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 510
+weight: 530
url: /aspose.cells/htmlsaveoptions/image_options/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/image_scalable/_index.md b/english/aspose.cells/htmlsaveoptions/image_scalable/_index.md
index f283bf91f6..ab5736a001 100644
--- a/english/aspose.cells/htmlsaveoptions/image_scalable/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/image_scalable/_index.md
@@ -3,7 +3,7 @@ title: image_scalable property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 520
+weight: 540
url: /aspose.cells/htmlsaveoptions/image_scalable/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/is_border_collapsed/_index.md b/english/aspose.cells/htmlsaveoptions/is_border_collapsed/_index.md
index f1e28eaf32..f7ce4c2c48 100644
--- a/english/aspose.cells/htmlsaveoptions/is_border_collapsed/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/is_border_collapsed/_index.md
@@ -3,7 +3,7 @@ title: is_border_collapsed property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 530
+weight: 550
url: /aspose.cells/htmlsaveoptions/is_border_collapsed/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/is_exp_image_to_temp_dir/_index.md b/english/aspose.cells/htmlsaveoptions/is_exp_image_to_temp_dir/_index.md
index 4adf2a59ac..c9994f0447 100644
--- a/english/aspose.cells/htmlsaveoptions/is_exp_image_to_temp_dir/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/is_exp_image_to_temp_dir/_index.md
@@ -3,7 +3,7 @@ title: is_exp_image_to_temp_dir property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 540
+weight: 560
url: /aspose.cells/htmlsaveoptions/is_exp_image_to_temp_dir/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/is_export_comments/_index.md b/english/aspose.cells/htmlsaveoptions/is_export_comments/_index.md
index e7b75c190c..8de47de64c 100644
--- a/english/aspose.cells/htmlsaveoptions/is_export_comments/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/is_export_comments/_index.md
@@ -3,7 +3,7 @@ title: is_export_comments property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 550
+weight: 570
url: /aspose.cells/htmlsaveoptions/is_export_comments/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/is_full_path_link/_index.md b/english/aspose.cells/htmlsaveoptions/is_full_path_link/_index.md
index 07c2ac8bd3..11c2666bca 100644
--- a/english/aspose.cells/htmlsaveoptions/is_full_path_link/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/is_full_path_link/_index.md
@@ -3,7 +3,7 @@ title: is_full_path_link property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 560
+weight: 580
url: /aspose.cells/htmlsaveoptions/is_full_path_link/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/is_ie_compatible/_index.md b/english/aspose.cells/htmlsaveoptions/is_ie_compatible/_index.md
index 96d9ee9990..2ec7f10e44 100644
--- a/english/aspose.cells/htmlsaveoptions/is_ie_compatible/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/is_ie_compatible/_index.md
@@ -3,7 +3,7 @@ title: is_ie_compatible property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 570
+weight: 590
url: /aspose.cells/htmlsaveoptions/is_ie_compatible/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/is_js_browser_compatible/_index.md b/english/aspose.cells/htmlsaveoptions/is_js_browser_compatible/_index.md
index 87a25ab373..974f0e685f 100644
--- a/english/aspose.cells/htmlsaveoptions/is_js_browser_compatible/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/is_js_browser_compatible/_index.md
@@ -3,7 +3,7 @@ title: is_js_browser_compatible property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 580
+weight: 600
url: /aspose.cells/htmlsaveoptions/is_js_browser_compatible/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/is_mobile_compatible/_index.md b/english/aspose.cells/htmlsaveoptions/is_mobile_compatible/_index.md
index b15550417c..0de24a30bb 100644
--- a/english/aspose.cells/htmlsaveoptions/is_mobile_compatible/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/is_mobile_compatible/_index.md
@@ -3,7 +3,7 @@ title: is_mobile_compatible property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 590
+weight: 610
url: /aspose.cells/htmlsaveoptions/is_mobile_compatible/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/link_target_type/_index.md b/english/aspose.cells/htmlsaveoptions/link_target_type/_index.md
index 9d29c7b553..6c11fd99ce 100644
--- a/english/aspose.cells/htmlsaveoptions/link_target_type/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/link_target_type/_index.md
@@ -3,7 +3,7 @@ title: link_target_type property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 600
+weight: 620
url: /aspose.cells/htmlsaveoptions/link_target_type/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/merge_areas/_index.md b/english/aspose.cells/htmlsaveoptions/merge_areas/_index.md
index bfc18fca77..f052eff190 100644
--- a/english/aspose.cells/htmlsaveoptions/merge_areas/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/merge_areas/_index.md
@@ -3,7 +3,7 @@ title: merge_areas property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 610
+weight: 630
url: /aspose.cells/htmlsaveoptions/merge_areas/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/merge_empty_td_forcely/_index.md b/english/aspose.cells/htmlsaveoptions/merge_empty_td_forcely/_index.md
index 662355a2dd..1a9b9dbde0 100644
--- a/english/aspose.cells/htmlsaveoptions/merge_empty_td_forcely/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/merge_empty_td_forcely/_index.md
@@ -3,7 +3,7 @@ title: merge_empty_td_forcely property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 620
+weight: 640
url: /aspose.cells/htmlsaveoptions/merge_empty_td_forcely/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/merge_empty_td_type/_index.md b/english/aspose.cells/htmlsaveoptions/merge_empty_td_type/_index.md
index 487830bfa1..f19a19844e 100644
--- a/english/aspose.cells/htmlsaveoptions/merge_empty_td_type/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/merge_empty_td_type/_index.md
@@ -3,7 +3,7 @@ title: merge_empty_td_type property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 630
+weight: 650
url: /aspose.cells/htmlsaveoptions/merge_empty_td_type/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/office_math_output_mode/_index.md b/english/aspose.cells/htmlsaveoptions/office_math_output_mode/_index.md
index 9908ad519c..b7d9c8a0f5 100644
--- a/english/aspose.cells/htmlsaveoptions/office_math_output_mode/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/office_math_output_mode/_index.md
@@ -3,7 +3,7 @@ title: office_math_output_mode property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 640
+weight: 660
url: /aspose.cells/htmlsaveoptions/office_math_output_mode/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/page_title/_index.md b/english/aspose.cells/htmlsaveoptions/page_title/_index.md
index 02447db67e..6f22a18e4e 100644
--- a/english/aspose.cells/htmlsaveoptions/page_title/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/page_title/_index.md
@@ -3,7 +3,7 @@ title: page_title property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 650
+weight: 670
url: /aspose.cells/htmlsaveoptions/page_title/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/parse_html_tag_in_cell/_index.md b/english/aspose.cells/htmlsaveoptions/parse_html_tag_in_cell/_index.md
index 333ab86be2..562b5b9c36 100644
--- a/english/aspose.cells/htmlsaveoptions/parse_html_tag_in_cell/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/parse_html_tag_in_cell/_index.md
@@ -3,7 +3,7 @@ title: parse_html_tag_in_cell property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 660
+weight: 680
url: /aspose.cells/htmlsaveoptions/parse_html_tag_in_cell/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/presentation_preference/_index.md b/english/aspose.cells/htmlsaveoptions/presentation_preference/_index.md
index 5ea6789a88..1b34dca7f9 100644
--- a/english/aspose.cells/htmlsaveoptions/presentation_preference/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/presentation_preference/_index.md
@@ -3,7 +3,7 @@ title: presentation_preference property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 670
+weight: 690
url: /aspose.cells/htmlsaveoptions/presentation_preference/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/refresh_chart_cache/_index.md b/english/aspose.cells/htmlsaveoptions/refresh_chart_cache/_index.md
index 0514ff29fb..65a19113a5 100644
--- a/english/aspose.cells/htmlsaveoptions/refresh_chart_cache/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/refresh_chart_cache/_index.md
@@ -3,7 +3,7 @@ title: refresh_chart_cache property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 680
+weight: 700
url: /aspose.cells/htmlsaveoptions/refresh_chart_cache/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/save_as_single_file/_index.md b/english/aspose.cells/htmlsaveoptions/save_as_single_file/_index.md
index 5de432bd7d..7490b09996 100644
--- a/english/aspose.cells/htmlsaveoptions/save_as_single_file/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/save_as_single_file/_index.md
@@ -3,7 +3,7 @@ title: save_as_single_file property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 690
+weight: 710
url: /aspose.cells/htmlsaveoptions/save_as_single_file/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/save_format/_index.md b/english/aspose.cells/htmlsaveoptions/save_format/_index.md
index 51cada3ff5..ab3b9ff00a 100644
--- a/english/aspose.cells/htmlsaveoptions/save_format/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/save_format/_index.md
@@ -3,7 +3,7 @@ title: save_format property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 700
+weight: 720
url: /aspose.cells/htmlsaveoptions/save_format/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/show_all_sheets/_index.md b/english/aspose.cells/htmlsaveoptions/show_all_sheets/_index.md
index cad080665a..b0f45bc9f5 100644
--- a/english/aspose.cells/htmlsaveoptions/show_all_sheets/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/show_all_sheets/_index.md
@@ -3,7 +3,7 @@ title: show_all_sheets property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 710
+weight: 730
url: /aspose.cells/htmlsaveoptions/show_all_sheets/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/sort_external_names/_index.md b/english/aspose.cells/htmlsaveoptions/sort_external_names/_index.md
index c6fdf7fc40..bf17f6c60c 100644
--- a/english/aspose.cells/htmlsaveoptions/sort_external_names/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/sort_external_names/_index.md
@@ -3,7 +3,7 @@ title: sort_external_names property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 720
+weight: 740
url: /aspose.cells/htmlsaveoptions/sort_external_names/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/sort_names/_index.md b/english/aspose.cells/htmlsaveoptions/sort_names/_index.md
index 4659de4c47..5cf5d58dc6 100644
--- a/english/aspose.cells/htmlsaveoptions/sort_names/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/sort_names/_index.md
@@ -3,7 +3,7 @@ title: sort_names property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 730
+weight: 750
url: /aspose.cells/htmlsaveoptions/sort_names/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/stream_provider/_index.md b/english/aspose.cells/htmlsaveoptions/stream_provider/_index.md
index b10593b0f6..bc40319fa5 100644
--- a/english/aspose.cells/htmlsaveoptions/stream_provider/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/stream_provider/_index.md
@@ -3,7 +3,7 @@ title: stream_provider property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 740
+weight: 760
url: /aspose.cells/htmlsaveoptions/stream_provider/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/table_css_id/_index.md b/english/aspose.cells/htmlsaveoptions/table_css_id/_index.md
index 9a83110b66..d96dc927eb 100644
--- a/english/aspose.cells/htmlsaveoptions/table_css_id/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/table_css_id/_index.md
@@ -3,7 +3,7 @@ title: table_css_id property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 750
+weight: 770
url: /aspose.cells/htmlsaveoptions/table_css_id/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/update_smart_art/_index.md b/english/aspose.cells/htmlsaveoptions/update_smart_art/_index.md
index b3b3149cec..d024b95c66 100644
--- a/english/aspose.cells/htmlsaveoptions/update_smart_art/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/update_smart_art/_index.md
@@ -3,7 +3,7 @@ title: update_smart_art property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 760
+weight: 780
url: /aspose.cells/htmlsaveoptions/update_smart_art/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/validate_merged_areas/_index.md b/english/aspose.cells/htmlsaveoptions/validate_merged_areas/_index.md
index 446cbea5d0..455c88a267 100644
--- a/english/aspose.cells/htmlsaveoptions/validate_merged_areas/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/validate_merged_areas/_index.md
@@ -3,7 +3,7 @@ title: validate_merged_areas property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 770
+weight: 790
url: /aspose.cells/htmlsaveoptions/validate_merged_areas/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/warning_callback/_index.md b/english/aspose.cells/htmlsaveoptions/warning_callback/_index.md
index 8e34ff73b9..ed133e1ad8 100644
--- a/english/aspose.cells/htmlsaveoptions/warning_callback/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/warning_callback/_index.md
@@ -3,7 +3,7 @@ title: warning_callback property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 780
+weight: 800
url: /aspose.cells/htmlsaveoptions/warning_callback/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/width_scalable/_index.md b/english/aspose.cells/htmlsaveoptions/width_scalable/_index.md
index 77bc3e3f45..e04ba4c3f0 100644
--- a/english/aspose.cells/htmlsaveoptions/width_scalable/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/width_scalable/_index.md
@@ -3,7 +3,7 @@ title: width_scalable property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 790
+weight: 810
url: /aspose.cells/htmlsaveoptions/width_scalable/
is_root: false
---
diff --git a/english/aspose.cells/htmlsaveoptions/worksheet_scalable/_index.md b/english/aspose.cells/htmlsaveoptions/worksheet_scalable/_index.md
index 11fed9915c..dae0c8d81e 100644
--- a/english/aspose.cells/htmlsaveoptions/worksheet_scalable/_index.md
+++ b/english/aspose.cells/htmlsaveoptions/worksheet_scalable/_index.md
@@ -3,7 +3,7 @@ title: worksheet_scalable property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 800
+weight: 820
url: /aspose.cells/htmlsaveoptions/worksheet_scalable/
is_root: false
---
diff --git a/english/aspose.cells/htmltableloadoption/_index.md b/english/aspose.cells/htmltableloadoption/_index.md
index 945659668b..2ec4bd281b 100644
--- a/english/aspose.cells/htmltableloadoption/_index.md
+++ b/english/aspose.cells/htmltableloadoption/_index.md
@@ -3,7 +3,7 @@ title: HtmlTableLoadOption class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 850
+weight: 860
url: /aspose.cells/htmltableloadoption/
is_root: false
---
diff --git a/english/aspose.cells/htmltableloadoptioncollection/_index.md b/english/aspose.cells/htmltableloadoptioncollection/_index.md
index 84591d919c..335f0cf1b0 100644
--- a/english/aspose.cells/htmltableloadoptioncollection/_index.md
+++ b/english/aspose.cells/htmltableloadoptioncollection/_index.md
@@ -3,7 +3,7 @@ title: HtmlTableLoadOptionCollection class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 860
+weight: 870
url: /aspose.cells/htmltableloadoptioncollection/
is_root: false
---
diff --git a/english/aspose.cells/hyperlink/_index.md b/english/aspose.cells/hyperlink/_index.md
index e018702e6a..741df0e61b 100644
--- a/english/aspose.cells/hyperlink/_index.md
+++ b/english/aspose.cells/hyperlink/_index.md
@@ -3,7 +3,7 @@ title: Hyperlink class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 870
+weight: 880
url: /aspose.cells/hyperlink/
is_root: false
---
diff --git a/english/aspose.cells/hyperlinkcollection/_index.md b/english/aspose.cells/hyperlinkcollection/_index.md
index f5ce619e48..ea14b165c3 100644
--- a/english/aspose.cells/hyperlinkcollection/_index.md
+++ b/english/aspose.cells/hyperlinkcollection/_index.md
@@ -3,7 +3,7 @@ title: HyperlinkCollection class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 880
+weight: 890
url: /aspose.cells/hyperlinkcollection/
is_root: false
---
diff --git a/english/aspose.cells/hyperlinktype/_index.md b/english/aspose.cells/hyperlinktype/_index.md
index ddeaf387a4..3680aecad8 100644
--- a/english/aspose.cells/hyperlinktype/_index.md
+++ b/english/aspose.cells/hyperlinktype/_index.md
@@ -3,7 +3,7 @@ title: HyperlinkType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2350
+weight: 2370
url: /aspose.cells/hyperlinktype/
is_root: false
---
diff --git a/english/aspose.cells/icellsdatatable/_index.md b/english/aspose.cells/icellsdatatable/_index.md
index 7364607644..41fe5d2e4e 100644
--- a/english/aspose.cells/icellsdatatable/_index.md
+++ b/english/aspose.cells/icellsdatatable/_index.md
@@ -3,7 +3,7 @@ title: ICellsDataTable class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 890
+weight: 900
url: /aspose.cells/icellsdatatable/
is_root: false
---
diff --git a/english/aspose.cells/iconfilter/_index.md b/english/aspose.cells/iconfilter/_index.md
index 671384b9b6..8c8cec29ce 100644
--- a/english/aspose.cells/iconfilter/_index.md
+++ b/english/aspose.cells/iconfilter/_index.md
@@ -3,7 +3,7 @@ title: IconFilter class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 960
+weight: 970
url: /aspose.cells/iconfilter/
is_root: false
---
diff --git a/english/aspose.cells/iconset/_index.md b/english/aspose.cells/iconset/_index.md
index c126d61e6c..0a7b1d926b 100644
--- a/english/aspose.cells/iconset/_index.md
+++ b/english/aspose.cells/iconset/_index.md
@@ -3,7 +3,7 @@ title: IconSet class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 970
+weight: 980
url: /aspose.cells/iconset/
is_root: false
---
diff --git a/english/aspose.cells/iconsettype/_index.md b/english/aspose.cells/iconsettype/_index.md
index 51621f45e9..b345307d61 100644
--- a/english/aspose.cells/iconsettype/_index.md
+++ b/english/aspose.cells/iconsettype/_index.md
@@ -3,7 +3,7 @@ title: IconSetType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2360
+weight: 2380
url: /aspose.cells/iconsettype/
is_root: false
---
diff --git a/english/aspose.cells/icustomparser/_index.md b/english/aspose.cells/icustomparser/_index.md
index 82bf101158..7a654d43b1 100644
--- a/english/aspose.cells/icustomparser/_index.md
+++ b/english/aspose.cells/icustomparser/_index.md
@@ -3,7 +3,7 @@ title: ICustomParser class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 900
+weight: 910
url: /aspose.cells/icustomparser/
is_root: false
---
diff --git a/english/aspose.cells/iexportobjectlistener/_index.md b/english/aspose.cells/iexportobjectlistener/_index.md
index 4b75b017f7..026d5cc739 100644
--- a/english/aspose.cells/iexportobjectlistener/_index.md
+++ b/english/aspose.cells/iexportobjectlistener/_index.md
@@ -3,7 +3,7 @@ title: IExportObjectListener class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 910
+weight: 920
url: /aspose.cells/iexportobjectlistener/
is_root: false
---
diff --git a/english/aspose.cells/ifilepathprovider/_index.md b/english/aspose.cells/ifilepathprovider/_index.md
index 34910ce193..62498b0807 100644
--- a/english/aspose.cells/ifilepathprovider/_index.md
+++ b/english/aspose.cells/ifilepathprovider/_index.md
@@ -3,7 +3,7 @@ title: IFilePathProvider class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 920
+weight: 930
url: /aspose.cells/ifilepathprovider/
is_root: false
---
diff --git a/english/aspose.cells/imagesaveoptions/_index.md b/english/aspose.cells/imagesaveoptions/_index.md
index 5389412453..1682f14250 100644
--- a/english/aspose.cells/imagesaveoptions/_index.md
+++ b/english/aspose.cells/imagesaveoptions/_index.md
@@ -3,7 +3,7 @@ title: ImageSaveOptions class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 980
+weight: 990
url: /aspose.cells/imagesaveoptions/
is_root: false
---
@@ -42,6 +42,7 @@ The ImageSaveOptions type exposes the following members:
| [sort_external_names](/cells/python-net/aspose.cells/imagesaveoptions/sort_external_names) | Indicates whether sorting external defined names before saving file. |
| [refresh_chart_cache](/cells/python-net/aspose.cells/imagesaveoptions/refresh_chart_cache) | Indicates whether refreshing chart cache data |
| [warning_callback](/cells/python-net/aspose.cells/imagesaveoptions/warning_callback) | Gets or sets warning callback. |
+| [check_excel_restriction](/cells/python-net/aspose.cells/imagesaveoptions/check_excel_restriction) | Whether check restriction of excel file when user modify cells related objects.
For example, excel does not allow inputting string value longer than 32K.
When you input a value longer than 32K, it will be truncated. |
| [update_smart_art](/cells/python-net/aspose.cells/imagesaveoptions/update_smart_art) | Indicates whether updating smart art setting.
The default value is false. |
| [encrypt_document_properties](/cells/python-net/aspose.cells/imagesaveoptions/encrypt_document_properties) | Indicates whether encrypt document properties when saving as .xls file.
The default value is true. |
| [image_or_print_options](/cells/python-net/aspose.cells/imagesaveoptions/image_or_print_options) | Additional image creation options. |
diff --git a/english/aspose.cells/imagesaveoptions/check_excel_restriction/_index.md b/english/aspose.cells/imagesaveoptions/check_excel_restriction/_index.md
new file mode 100644
index 0000000000..5e928112a9
--- /dev/null
+++ b/english/aspose.cells/imagesaveoptions/check_excel_restriction/_index.md
@@ -0,0 +1,29 @@
+---
+title: check_excel_restriction property
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 40
+url: /aspose.cells/imagesaveoptions/check_excel_restriction/
+is_root: false
+---
+
+## check_excel_restriction property
+
+
+Whether check restriction of excel file when user modify cells related objects.
+For example, excel does not allow inputting string value longer than 32K.
+When you input a value longer than 32K, it will be truncated.
+### Definition:
+```python
+@property
+def check_excel_restriction(self):
+ ...
+@check_excel_restriction.setter
+def check_excel_restriction(self, value):
+ ...
+```
+
+### See Also
+* module [`aspose.cells`](../../)
+* class [`ImageSaveOptions`](/cells/python-net/aspose.cells/imagesaveoptions)
diff --git a/english/aspose.cells/imagesaveoptions/clear_data/_index.md b/english/aspose.cells/imagesaveoptions/clear_data/_index.md
index 9bb92dae4b..2fb705e3e6 100644
--- a/english/aspose.cells/imagesaveoptions/clear_data/_index.md
+++ b/english/aspose.cells/imagesaveoptions/clear_data/_index.md
@@ -3,7 +3,7 @@ title: clear_data property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 40
+weight: 50
url: /aspose.cells/imagesaveoptions/clear_data/
is_root: false
---
diff --git a/english/aspose.cells/imagesaveoptions/create_directory/_index.md b/english/aspose.cells/imagesaveoptions/create_directory/_index.md
index 4f5ba08c72..e1ec605a95 100644
--- a/english/aspose.cells/imagesaveoptions/create_directory/_index.md
+++ b/english/aspose.cells/imagesaveoptions/create_directory/_index.md
@@ -3,7 +3,7 @@ title: create_directory property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 50
+weight: 60
url: /aspose.cells/imagesaveoptions/create_directory/
is_root: false
---
diff --git a/english/aspose.cells/imagesaveoptions/encrypt_document_properties/_index.md b/english/aspose.cells/imagesaveoptions/encrypt_document_properties/_index.md
index 89d4ef5141..a49e698e81 100644
--- a/english/aspose.cells/imagesaveoptions/encrypt_document_properties/_index.md
+++ b/english/aspose.cells/imagesaveoptions/encrypt_document_properties/_index.md
@@ -3,7 +3,7 @@ title: encrypt_document_properties property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 60
+weight: 70
url: /aspose.cells/imagesaveoptions/encrypt_document_properties/
is_root: false
---
diff --git a/english/aspose.cells/imagesaveoptions/image_or_print_options/_index.md b/english/aspose.cells/imagesaveoptions/image_or_print_options/_index.md
index 391ead3144..60faebb0d5 100644
--- a/english/aspose.cells/imagesaveoptions/image_or_print_options/_index.md
+++ b/english/aspose.cells/imagesaveoptions/image_or_print_options/_index.md
@@ -3,7 +3,7 @@ title: image_or_print_options property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 70
+weight: 80
url: /aspose.cells/imagesaveoptions/image_or_print_options/
is_root: false
---
diff --git a/english/aspose.cells/imagesaveoptions/merge_areas/_index.md b/english/aspose.cells/imagesaveoptions/merge_areas/_index.md
index a43591b660..ed56af58ac 100644
--- a/english/aspose.cells/imagesaveoptions/merge_areas/_index.md
+++ b/english/aspose.cells/imagesaveoptions/merge_areas/_index.md
@@ -3,7 +3,7 @@ title: merge_areas property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 80
+weight: 90
url: /aspose.cells/imagesaveoptions/merge_areas/
is_root: false
---
diff --git a/english/aspose.cells/imagesaveoptions/refresh_chart_cache/_index.md b/english/aspose.cells/imagesaveoptions/refresh_chart_cache/_index.md
index 02b875fd18..011b97206f 100644
--- a/english/aspose.cells/imagesaveoptions/refresh_chart_cache/_index.md
+++ b/english/aspose.cells/imagesaveoptions/refresh_chart_cache/_index.md
@@ -3,7 +3,7 @@ title: refresh_chart_cache property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 90
+weight: 100
url: /aspose.cells/imagesaveoptions/refresh_chart_cache/
is_root: false
---
diff --git a/english/aspose.cells/imagesaveoptions/save_format/_index.md b/english/aspose.cells/imagesaveoptions/save_format/_index.md
index 8fb77873c5..132bffb50e 100644
--- a/english/aspose.cells/imagesaveoptions/save_format/_index.md
+++ b/english/aspose.cells/imagesaveoptions/save_format/_index.md
@@ -3,7 +3,7 @@ title: save_format property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 100
+weight: 110
url: /aspose.cells/imagesaveoptions/save_format/
is_root: false
---
diff --git a/english/aspose.cells/imagesaveoptions/sort_external_names/_index.md b/english/aspose.cells/imagesaveoptions/sort_external_names/_index.md
index 0a28d65e7b..4e7ca1890a 100644
--- a/english/aspose.cells/imagesaveoptions/sort_external_names/_index.md
+++ b/english/aspose.cells/imagesaveoptions/sort_external_names/_index.md
@@ -3,7 +3,7 @@ title: sort_external_names property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 110
+weight: 120
url: /aspose.cells/imagesaveoptions/sort_external_names/
is_root: false
---
diff --git a/english/aspose.cells/imagesaveoptions/sort_names/_index.md b/english/aspose.cells/imagesaveoptions/sort_names/_index.md
index 7167352236..69c9806266 100644
--- a/english/aspose.cells/imagesaveoptions/sort_names/_index.md
+++ b/english/aspose.cells/imagesaveoptions/sort_names/_index.md
@@ -3,7 +3,7 @@ title: sort_names property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 120
+weight: 130
url: /aspose.cells/imagesaveoptions/sort_names/
is_root: false
---
diff --git a/english/aspose.cells/imagesaveoptions/stream_provider/_index.md b/english/aspose.cells/imagesaveoptions/stream_provider/_index.md
index 2ead101834..0a7cdb3db5 100644
--- a/english/aspose.cells/imagesaveoptions/stream_provider/_index.md
+++ b/english/aspose.cells/imagesaveoptions/stream_provider/_index.md
@@ -3,7 +3,7 @@ title: stream_provider property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 130
+weight: 140
url: /aspose.cells/imagesaveoptions/stream_provider/
is_root: false
---
diff --git a/english/aspose.cells/imagesaveoptions/update_smart_art/_index.md b/english/aspose.cells/imagesaveoptions/update_smart_art/_index.md
index 79a3a0740a..9ee24ad3b3 100644
--- a/english/aspose.cells/imagesaveoptions/update_smart_art/_index.md
+++ b/english/aspose.cells/imagesaveoptions/update_smart_art/_index.md
@@ -3,7 +3,7 @@ title: update_smart_art property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 140
+weight: 150
url: /aspose.cells/imagesaveoptions/update_smart_art/
is_root: false
---
diff --git a/english/aspose.cells/imagesaveoptions/validate_merged_areas/_index.md b/english/aspose.cells/imagesaveoptions/validate_merged_areas/_index.md
index b668f2eb43..3b797bfc99 100644
--- a/english/aspose.cells/imagesaveoptions/validate_merged_areas/_index.md
+++ b/english/aspose.cells/imagesaveoptions/validate_merged_areas/_index.md
@@ -3,7 +3,7 @@ title: validate_merged_areas property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 150
+weight: 160
url: /aspose.cells/imagesaveoptions/validate_merged_areas/
is_root: false
---
diff --git a/english/aspose.cells/imagesaveoptions/warning_callback/_index.md b/english/aspose.cells/imagesaveoptions/warning_callback/_index.md
index 1033ce82a8..a789fdeb44 100644
--- a/english/aspose.cells/imagesaveoptions/warning_callback/_index.md
+++ b/english/aspose.cells/imagesaveoptions/warning_callback/_index.md
@@ -3,7 +3,7 @@ title: warning_callback property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 160
+weight: 170
url: /aspose.cells/imagesaveoptions/warning_callback/
is_root: false
---
diff --git a/english/aspose.cells/importtableoptions/_index.md b/english/aspose.cells/importtableoptions/_index.md
index 6bb27f6aee..020ea142c6 100644
--- a/english/aspose.cells/importtableoptions/_index.md
+++ b/english/aspose.cells/importtableoptions/_index.md
@@ -3,7 +3,7 @@ title: ImportTableOptions class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 990
+weight: 1000
url: /aspose.cells/importtableoptions/
is_root: false
---
diff --git a/english/aspose.cells/individualfontconfigs/_index.md b/english/aspose.cells/individualfontconfigs/_index.md
index 695612c2c7..c44c628682 100644
--- a/english/aspose.cells/individualfontconfigs/_index.md
+++ b/english/aspose.cells/individualfontconfigs/_index.md
@@ -3,7 +3,7 @@ title: IndividualFontConfigs class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1000
+weight: 1010
url: /aspose.cells/individualfontconfigs/
is_root: false
---
diff --git a/english/aspose.cells/insertoptions/_index.md b/english/aspose.cells/insertoptions/_index.md
index 656b68b71d..fb197460c7 100644
--- a/english/aspose.cells/insertoptions/_index.md
+++ b/english/aspose.cells/insertoptions/_index.md
@@ -3,7 +3,7 @@ title: InsertOptions class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1010
+weight: 1020
url: /aspose.cells/insertoptions/
is_root: false
---
@@ -27,6 +27,7 @@ The InsertOptions type exposes the following members:
| :- | :- |
| [copy_format_type](/cells/python-net/aspose.cells/insertoptions/copy_format_type) | |
| [update_reference](/cells/python-net/aspose.cells/insertoptions/update_reference) | Indicates if references in other worksheets will be updated. |
+| [formula_change_monitor](/cells/python-net/aspose.cells/insertoptions/formula_change_monitor) | Gets/sets the monitor for tracking changes caused by the insertion. |
diff --git a/english/aspose.cells/insertoptions/formula_change_monitor/_index.md b/english/aspose.cells/insertoptions/formula_change_monitor/_index.md
new file mode 100644
index 0000000000..db1944511d
--- /dev/null
+++ b/english/aspose.cells/insertoptions/formula_change_monitor/_index.md
@@ -0,0 +1,28 @@
+---
+title: formula_change_monitor property
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 40
+url: /aspose.cells/insertoptions/formula_change_monitor/
+is_root: false
+---
+
+## formula_change_monitor property
+
+
+Gets/sets the monitor for tracking changes caused by the insertion.
+### Definition:
+```python
+@property
+def formula_change_monitor(self):
+ ...
+@formula_change_monitor.setter
+def formula_change_monitor(self, value):
+ ...
+```
+
+### See Also
+* module [`aspose.cells`](../../)
+* class [`AbstractFormulaChangeMonitor`](/cells/python-net/aspose.cells/abstractformulachangemonitor)
+* class [`InsertOptions`](/cells/python-net/aspose.cells/insertoptions)
diff --git a/english/aspose.cells/insertoptions/update_reference/_index.md b/english/aspose.cells/insertoptions/update_reference/_index.md
index ae91ba517e..fb53685522 100644
--- a/english/aspose.cells/insertoptions/update_reference/_index.md
+++ b/english/aspose.cells/insertoptions/update_reference/_index.md
@@ -3,7 +3,7 @@ title: update_reference property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 40
+weight: 50
url: /aspose.cells/insertoptions/update_reference/
is_root: false
---
diff --git a/english/aspose.cells/interruptmonitor/_index.md b/english/aspose.cells/interruptmonitor/_index.md
index 7a0192776e..5a544ed9d9 100644
--- a/english/aspose.cells/interruptmonitor/_index.md
+++ b/english/aspose.cells/interruptmonitor/_index.md
@@ -3,7 +3,7 @@ title: InterruptMonitor class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1020
+weight: 1030
url: /aspose.cells/interruptmonitor/
is_root: false
---
diff --git a/english/aspose.cells/ismartmarkercallback/_index.md b/english/aspose.cells/ismartmarkercallback/_index.md
index 0063ff33a7..f9190d0daf 100644
--- a/english/aspose.cells/ismartmarkercallback/_index.md
+++ b/english/aspose.cells/ismartmarkercallback/_index.md
@@ -3,7 +3,7 @@ title: ISmartMarkerCallBack class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 930
+weight: 940
url: /aspose.cells/ismartmarkercallback/
is_root: false
---
diff --git a/english/aspose.cells/istreamprovider/_index.md b/english/aspose.cells/istreamprovider/_index.md
index f22c0702fd..677e220905 100644
--- a/english/aspose.cells/istreamprovider/_index.md
+++ b/english/aspose.cells/istreamprovider/_index.md
@@ -3,7 +3,7 @@ title: IStreamProvider class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 940
+weight: 950
url: /aspose.cells/istreamprovider/
is_root: false
---
diff --git a/english/aspose.cells/iwarningcallback/_index.md b/english/aspose.cells/iwarningcallback/_index.md
index ce6eb64d60..e1e27752e0 100644
--- a/english/aspose.cells/iwarningcallback/_index.md
+++ b/english/aspose.cells/iwarningcallback/_index.md
@@ -3,7 +3,7 @@ title: IWarningCallback class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 950
+weight: 960
url: /aspose.cells/iwarningcallback/
is_root: false
---
diff --git a/english/aspose.cells/jsonloadoptions/_index.md b/english/aspose.cells/jsonloadoptions/_index.md
index 178beb60bb..609ec36e91 100644
--- a/english/aspose.cells/jsonloadoptions/_index.md
+++ b/english/aspose.cells/jsonloadoptions/_index.md
@@ -3,7 +3,7 @@ title: JsonLoadOptions class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1030
+weight: 1040
url: /aspose.cells/jsonloadoptions/
is_root: false
---
diff --git a/english/aspose.cells/jsonsaveoptions/_index.md b/english/aspose.cells/jsonsaveoptions/_index.md
index 00cea1959f..5d7e4c93b1 100644
--- a/english/aspose.cells/jsonsaveoptions/_index.md
+++ b/english/aspose.cells/jsonsaveoptions/_index.md
@@ -3,7 +3,7 @@ title: JsonSaveOptions class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1040
+weight: 1050
url: /aspose.cells/jsonsaveoptions/
is_root: false
---
@@ -40,6 +40,7 @@ The JsonSaveOptions type exposes the following members:
| [sort_external_names](/cells/python-net/aspose.cells/jsonsaveoptions/sort_external_names) | Indicates whether sorting external defined names before saving file. |
| [refresh_chart_cache](/cells/python-net/aspose.cells/jsonsaveoptions/refresh_chart_cache) | Indicates whether refreshing chart cache data |
| [warning_callback](/cells/python-net/aspose.cells/jsonsaveoptions/warning_callback) | Gets or sets warning callback. |
+| [check_excel_restriction](/cells/python-net/aspose.cells/jsonsaveoptions/check_excel_restriction) | Whether check restriction of excel file when user modify cells related objects.
For example, excel does not allow inputting string value longer than 32K.
When you input a value longer than 32K, it will be truncated. |
| [update_smart_art](/cells/python-net/aspose.cells/jsonsaveoptions/update_smart_art) | Indicates whether updating smart art setting.
The default value is false. |
| [encrypt_document_properties](/cells/python-net/aspose.cells/jsonsaveoptions/encrypt_document_properties) | Indicates whether encrypt document properties when saving as .xls file.
The default value is true. |
| [export_hyperlink_type](/cells/python-net/aspose.cells/jsonsaveoptions/export_hyperlink_type) | Represents the type of exporting hyperlink to json. |
diff --git a/english/aspose.cells/jsonsaveoptions/check_excel_restriction/_index.md b/english/aspose.cells/jsonsaveoptions/check_excel_restriction/_index.md
new file mode 100644
index 0000000000..f03de11cfd
--- /dev/null
+++ b/english/aspose.cells/jsonsaveoptions/check_excel_restriction/_index.md
@@ -0,0 +1,29 @@
+---
+title: check_excel_restriction property
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 50
+url: /aspose.cells/jsonsaveoptions/check_excel_restriction/
+is_root: false
+---
+
+## check_excel_restriction property
+
+
+Whether check restriction of excel file when user modify cells related objects.
+For example, excel does not allow inputting string value longer than 32K.
+When you input a value longer than 32K, it will be truncated.
+### Definition:
+```python
+@property
+def check_excel_restriction(self):
+ ...
+@check_excel_restriction.setter
+def check_excel_restriction(self, value):
+ ...
+```
+
+### See Also
+* module [`aspose.cells`](../../)
+* class [`JsonSaveOptions`](/cells/python-net/aspose.cells/jsonsaveoptions)
diff --git a/english/aspose.cells/jsonsaveoptions/clear_data/_index.md b/english/aspose.cells/jsonsaveoptions/clear_data/_index.md
index 0ef53db097..25d2b0ae4a 100644
--- a/english/aspose.cells/jsonsaveoptions/clear_data/_index.md
+++ b/english/aspose.cells/jsonsaveoptions/clear_data/_index.md
@@ -3,7 +3,7 @@ title: clear_data property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 50
+weight: 60
url: /aspose.cells/jsonsaveoptions/clear_data/
is_root: false
---
diff --git a/english/aspose.cells/jsonsaveoptions/create_directory/_index.md b/english/aspose.cells/jsonsaveoptions/create_directory/_index.md
index 4fd975b86f..3f66e60309 100644
--- a/english/aspose.cells/jsonsaveoptions/create_directory/_index.md
+++ b/english/aspose.cells/jsonsaveoptions/create_directory/_index.md
@@ -3,7 +3,7 @@ title: create_directory property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 60
+weight: 70
url: /aspose.cells/jsonsaveoptions/create_directory/
is_root: false
---
diff --git a/english/aspose.cells/jsonsaveoptions/encrypt_document_properties/_index.md b/english/aspose.cells/jsonsaveoptions/encrypt_document_properties/_index.md
index c25b7aa930..a95ea3f883 100644
--- a/english/aspose.cells/jsonsaveoptions/encrypt_document_properties/_index.md
+++ b/english/aspose.cells/jsonsaveoptions/encrypt_document_properties/_index.md
@@ -3,7 +3,7 @@ title: encrypt_document_properties property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 70
+weight: 80
url: /aspose.cells/jsonsaveoptions/encrypt_document_properties/
is_root: false
---
diff --git a/english/aspose.cells/jsonsaveoptions/export_area/_index.md b/english/aspose.cells/jsonsaveoptions/export_area/_index.md
index 7e624a1d62..bb5cb97f40 100644
--- a/english/aspose.cells/jsonsaveoptions/export_area/_index.md
+++ b/english/aspose.cells/jsonsaveoptions/export_area/_index.md
@@ -3,7 +3,7 @@ title: export_area property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 80
+weight: 90
url: /aspose.cells/jsonsaveoptions/export_area/
is_root: false
---
diff --git a/english/aspose.cells/jsonsaveoptions/export_as_string/_index.md b/english/aspose.cells/jsonsaveoptions/export_as_string/_index.md
index c216a0f2d5..0d4f4c4c99 100644
--- a/english/aspose.cells/jsonsaveoptions/export_as_string/_index.md
+++ b/english/aspose.cells/jsonsaveoptions/export_as_string/_index.md
@@ -3,7 +3,7 @@ title: export_as_string property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 90
+weight: 100
url: /aspose.cells/jsonsaveoptions/export_as_string/
is_root: false
---
diff --git a/english/aspose.cells/jsonsaveoptions/export_empty_cells/_index.md b/english/aspose.cells/jsonsaveoptions/export_empty_cells/_index.md
index f9232e24ba..bb1a448c29 100644
--- a/english/aspose.cells/jsonsaveoptions/export_empty_cells/_index.md
+++ b/english/aspose.cells/jsonsaveoptions/export_empty_cells/_index.md
@@ -3,7 +3,7 @@ title: export_empty_cells property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 100
+weight: 110
url: /aspose.cells/jsonsaveoptions/export_empty_cells/
is_root: false
---
diff --git a/english/aspose.cells/jsonsaveoptions/export_hyperlink_type/_index.md b/english/aspose.cells/jsonsaveoptions/export_hyperlink_type/_index.md
index f80bf181d8..5e8c79ea09 100644
--- a/english/aspose.cells/jsonsaveoptions/export_hyperlink_type/_index.md
+++ b/english/aspose.cells/jsonsaveoptions/export_hyperlink_type/_index.md
@@ -3,7 +3,7 @@ title: export_hyperlink_type property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 110
+weight: 120
url: /aspose.cells/jsonsaveoptions/export_hyperlink_type/
is_root: false
---
diff --git a/english/aspose.cells/jsonsaveoptions/export_nested_structure/_index.md b/english/aspose.cells/jsonsaveoptions/export_nested_structure/_index.md
index b4a51386ce..8ff419a2c4 100644
--- a/english/aspose.cells/jsonsaveoptions/export_nested_structure/_index.md
+++ b/english/aspose.cells/jsonsaveoptions/export_nested_structure/_index.md
@@ -3,7 +3,7 @@ title: export_nested_structure property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 120
+weight: 130
url: /aspose.cells/jsonsaveoptions/export_nested_structure/
is_root: false
---
diff --git a/english/aspose.cells/jsonsaveoptions/has_header_row/_index.md b/english/aspose.cells/jsonsaveoptions/has_header_row/_index.md
index b1de8c3d0d..2d9be3de9c 100644
--- a/english/aspose.cells/jsonsaveoptions/has_header_row/_index.md
+++ b/english/aspose.cells/jsonsaveoptions/has_header_row/_index.md
@@ -3,7 +3,7 @@ title: has_header_row property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 130
+weight: 140
url: /aspose.cells/jsonsaveoptions/has_header_row/
is_root: false
---
diff --git a/english/aspose.cells/jsonsaveoptions/indent/_index.md b/english/aspose.cells/jsonsaveoptions/indent/_index.md
index 31ce5c3e0d..3e08f3cdb9 100644
--- a/english/aspose.cells/jsonsaveoptions/indent/_index.md
+++ b/english/aspose.cells/jsonsaveoptions/indent/_index.md
@@ -3,7 +3,7 @@ title: indent property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 140
+weight: 150
url: /aspose.cells/jsonsaveoptions/indent/
is_root: false
---
diff --git a/english/aspose.cells/jsonsaveoptions/merge_areas/_index.md b/english/aspose.cells/jsonsaveoptions/merge_areas/_index.md
index 5f0bbb0240..77fa8a4bbe 100644
--- a/english/aspose.cells/jsonsaveoptions/merge_areas/_index.md
+++ b/english/aspose.cells/jsonsaveoptions/merge_areas/_index.md
@@ -3,7 +3,7 @@ title: merge_areas property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 150
+weight: 160
url: /aspose.cells/jsonsaveoptions/merge_areas/
is_root: false
---
diff --git a/english/aspose.cells/jsonsaveoptions/refresh_chart_cache/_index.md b/english/aspose.cells/jsonsaveoptions/refresh_chart_cache/_index.md
index bedc08ac54..cf025ac720 100644
--- a/english/aspose.cells/jsonsaveoptions/refresh_chart_cache/_index.md
+++ b/english/aspose.cells/jsonsaveoptions/refresh_chart_cache/_index.md
@@ -3,7 +3,7 @@ title: refresh_chart_cache property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 160
+weight: 170
url: /aspose.cells/jsonsaveoptions/refresh_chart_cache/
is_root: false
---
diff --git a/english/aspose.cells/jsonsaveoptions/save_format/_index.md b/english/aspose.cells/jsonsaveoptions/save_format/_index.md
index 231a767eef..cc10b012f7 100644
--- a/english/aspose.cells/jsonsaveoptions/save_format/_index.md
+++ b/english/aspose.cells/jsonsaveoptions/save_format/_index.md
@@ -3,7 +3,7 @@ title: save_format property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 170
+weight: 180
url: /aspose.cells/jsonsaveoptions/save_format/
is_root: false
---
diff --git a/english/aspose.cells/jsonsaveoptions/schemas/_index.md b/english/aspose.cells/jsonsaveoptions/schemas/_index.md
index 8f54664b24..202d2df598 100644
--- a/english/aspose.cells/jsonsaveoptions/schemas/_index.md
+++ b/english/aspose.cells/jsonsaveoptions/schemas/_index.md
@@ -3,7 +3,7 @@ title: schemas property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 180
+weight: 190
url: /aspose.cells/jsonsaveoptions/schemas/
is_root: false
---
diff --git a/english/aspose.cells/jsonsaveoptions/sheet_indexes/_index.md b/english/aspose.cells/jsonsaveoptions/sheet_indexes/_index.md
index d895731ad0..33eb87fdd8 100644
--- a/english/aspose.cells/jsonsaveoptions/sheet_indexes/_index.md
+++ b/english/aspose.cells/jsonsaveoptions/sheet_indexes/_index.md
@@ -3,7 +3,7 @@ title: sheet_indexes property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 190
+weight: 200
url: /aspose.cells/jsonsaveoptions/sheet_indexes/
is_root: false
---
diff --git a/english/aspose.cells/jsonsaveoptions/skip_empty_rows/_index.md b/english/aspose.cells/jsonsaveoptions/skip_empty_rows/_index.md
index 76fe6d13bb..7dd9335fd7 100644
--- a/english/aspose.cells/jsonsaveoptions/skip_empty_rows/_index.md
+++ b/english/aspose.cells/jsonsaveoptions/skip_empty_rows/_index.md
@@ -3,7 +3,7 @@ title: skip_empty_rows property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 200
+weight: 210
url: /aspose.cells/jsonsaveoptions/skip_empty_rows/
is_root: false
---
diff --git a/english/aspose.cells/jsonsaveoptions/sort_external_names/_index.md b/english/aspose.cells/jsonsaveoptions/sort_external_names/_index.md
index 03d3915da2..7dacf676bf 100644
--- a/english/aspose.cells/jsonsaveoptions/sort_external_names/_index.md
+++ b/english/aspose.cells/jsonsaveoptions/sort_external_names/_index.md
@@ -3,7 +3,7 @@ title: sort_external_names property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 210
+weight: 220
url: /aspose.cells/jsonsaveoptions/sort_external_names/
is_root: false
---
diff --git a/english/aspose.cells/jsonsaveoptions/sort_names/_index.md b/english/aspose.cells/jsonsaveoptions/sort_names/_index.md
index ef408d454f..34125489f2 100644
--- a/english/aspose.cells/jsonsaveoptions/sort_names/_index.md
+++ b/english/aspose.cells/jsonsaveoptions/sort_names/_index.md
@@ -3,7 +3,7 @@ title: sort_names property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 220
+weight: 230
url: /aspose.cells/jsonsaveoptions/sort_names/
is_root: false
---
diff --git a/english/aspose.cells/jsonsaveoptions/to_excel_struct/_index.md b/english/aspose.cells/jsonsaveoptions/to_excel_struct/_index.md
index 66125b5d88..afba5198e6 100644
--- a/english/aspose.cells/jsonsaveoptions/to_excel_struct/_index.md
+++ b/english/aspose.cells/jsonsaveoptions/to_excel_struct/_index.md
@@ -3,7 +3,7 @@ title: to_excel_struct property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 230
+weight: 240
url: /aspose.cells/jsonsaveoptions/to_excel_struct/
is_root: false
---
diff --git a/english/aspose.cells/jsonsaveoptions/update_smart_art/_index.md b/english/aspose.cells/jsonsaveoptions/update_smart_art/_index.md
index df8796426c..26863542eb 100644
--- a/english/aspose.cells/jsonsaveoptions/update_smart_art/_index.md
+++ b/english/aspose.cells/jsonsaveoptions/update_smart_art/_index.md
@@ -3,7 +3,7 @@ title: update_smart_art property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 240
+weight: 250
url: /aspose.cells/jsonsaveoptions/update_smart_art/
is_root: false
---
diff --git a/english/aspose.cells/jsonsaveoptions/validate_merged_areas/_index.md b/english/aspose.cells/jsonsaveoptions/validate_merged_areas/_index.md
index 72e59ba3d9..59c875b4f1 100644
--- a/english/aspose.cells/jsonsaveoptions/validate_merged_areas/_index.md
+++ b/english/aspose.cells/jsonsaveoptions/validate_merged_areas/_index.md
@@ -3,7 +3,7 @@ title: validate_merged_areas property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 250
+weight: 260
url: /aspose.cells/jsonsaveoptions/validate_merged_areas/
is_root: false
---
diff --git a/english/aspose.cells/jsonsaveoptions/warning_callback/_index.md b/english/aspose.cells/jsonsaveoptions/warning_callback/_index.md
index 7a55bec92d..2e0092de1c 100644
--- a/english/aspose.cells/jsonsaveoptions/warning_callback/_index.md
+++ b/english/aspose.cells/jsonsaveoptions/warning_callback/_index.md
@@ -3,7 +3,7 @@ title: warning_callback property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 260
+weight: 270
url: /aspose.cells/jsonsaveoptions/warning_callback/
is_root: false
---
diff --git a/english/aspose.cells/license/_index.md b/english/aspose.cells/license/_index.md
index 4207ccbc12..9d4a8a8ab9 100644
--- a/english/aspose.cells/license/_index.md
+++ b/english/aspose.cells/license/_index.md
@@ -3,7 +3,7 @@ title: License class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1050
+weight: 1060
url: /aspose.cells/license/
is_root: false
---
diff --git a/english/aspose.cells/lightcellsdatahandler/_index.md b/english/aspose.cells/lightcellsdatahandler/_index.md
index 32d5a72b1e..d08b31e797 100644
--- a/english/aspose.cells/lightcellsdatahandler/_index.md
+++ b/english/aspose.cells/lightcellsdatahandler/_index.md
@@ -3,7 +3,7 @@ title: LightCellsDataHandler class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1060
+weight: 1070
url: /aspose.cells/lightcellsdatahandler/
is_root: false
---
diff --git a/english/aspose.cells/lightcellsdataprovider/_index.md b/english/aspose.cells/lightcellsdataprovider/_index.md
index 39e0bea463..92881c3da3 100644
--- a/english/aspose.cells/lightcellsdataprovider/_index.md
+++ b/english/aspose.cells/lightcellsdataprovider/_index.md
@@ -3,7 +3,7 @@ title: LightCellsDataProvider class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1070
+weight: 1080
url: /aspose.cells/lightcellsdataprovider/
is_root: false
---
diff --git a/english/aspose.cells/loaddatafilteroptions/_index.md b/english/aspose.cells/loaddatafilteroptions/_index.md
index b443ef8d6e..29defafdaf 100644
--- a/english/aspose.cells/loaddatafilteroptions/_index.md
+++ b/english/aspose.cells/loaddatafilteroptions/_index.md
@@ -3,7 +3,7 @@ title: LoadDataFilterOptions enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2370
+weight: 2390
url: /aspose.cells/loaddatafilteroptions/
is_root: false
---
diff --git a/english/aspose.cells/loadfilter/_index.md b/english/aspose.cells/loadfilter/_index.md
index 3556398ba8..1fa8d22b0b 100644
--- a/english/aspose.cells/loadfilter/_index.md
+++ b/english/aspose.cells/loadfilter/_index.md
@@ -3,7 +3,7 @@ title: LoadFilter class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1080
+weight: 1090
url: /aspose.cells/loadfilter/
is_root: false
---
diff --git a/english/aspose.cells/loadformat/_index.md b/english/aspose.cells/loadformat/_index.md
index fa2bc17181..db92a1ab9d 100644
--- a/english/aspose.cells/loadformat/_index.md
+++ b/english/aspose.cells/loadformat/_index.md
@@ -3,7 +3,7 @@ title: LoadFormat enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2380
+weight: 2400
url: /aspose.cells/loadformat/
is_root: false
---
diff --git a/english/aspose.cells/loadoptions/_index.md b/english/aspose.cells/loadoptions/_index.md
index 9e8c6cd472..4ee5fdc4a5 100644
--- a/english/aspose.cells/loadoptions/_index.md
+++ b/english/aspose.cells/loadoptions/_index.md
@@ -3,7 +3,7 @@ title: LoadOptions class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1090
+weight: 1100
url: /aspose.cells/loadoptions/
is_root: false
---
diff --git a/english/aspose.cells/lookattype/_index.md b/english/aspose.cells/lookattype/_index.md
index 85e7840f31..734f56a349 100644
--- a/english/aspose.cells/lookattype/_index.md
+++ b/english/aspose.cells/lookattype/_index.md
@@ -3,7 +3,7 @@ title: LookAtType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2390
+weight: 2410
url: /aspose.cells/lookattype/
is_root: false
---
diff --git a/english/aspose.cells/lookintype/_index.md b/english/aspose.cells/lookintype/_index.md
index 5db86ea5c8..c4fbb3cde0 100644
--- a/english/aspose.cells/lookintype/_index.md
+++ b/english/aspose.cells/lookintype/_index.md
@@ -3,7 +3,7 @@ title: LookInType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2400
+weight: 2420
url: /aspose.cells/lookintype/
is_root: false
---
diff --git a/english/aspose.cells/markdownsaveoptions/_index.md b/english/aspose.cells/markdownsaveoptions/_index.md
index 6ccdaf8238..b3a613dda1 100644
--- a/english/aspose.cells/markdownsaveoptions/_index.md
+++ b/english/aspose.cells/markdownsaveoptions/_index.md
@@ -3,7 +3,7 @@ title: MarkdownSaveOptions class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1100
+weight: 1110
url: /aspose.cells/markdownsaveoptions/
is_root: false
---
@@ -40,6 +40,7 @@ The MarkdownSaveOptions type exposes the following members:
| [sort_external_names](/cells/python-net/aspose.cells/markdownsaveoptions/sort_external_names) | Indicates whether sorting external defined names before saving file. |
| [refresh_chart_cache](/cells/python-net/aspose.cells/markdownsaveoptions/refresh_chart_cache) | Indicates whether refreshing chart cache data |
| [warning_callback](/cells/python-net/aspose.cells/markdownsaveoptions/warning_callback) | Gets or sets warning callback. |
+| [check_excel_restriction](/cells/python-net/aspose.cells/markdownsaveoptions/check_excel_restriction) | Whether check restriction of excel file when user modify cells related objects.
For example, excel does not allow inputting string value longer than 32K.
When you input a value longer than 32K, it will be truncated. |
| [update_smart_art](/cells/python-net/aspose.cells/markdownsaveoptions/update_smart_art) | Indicates whether updating smart art setting.
The default value is false. |
| [encrypt_document_properties](/cells/python-net/aspose.cells/markdownsaveoptions/encrypt_document_properties) | Indicates whether encrypt document properties when saving as .xls file.
The default value is true. |
| [encoding](/cells/python-net/aspose.cells/markdownsaveoptions/encoding) | Gets and sets the default encoding. |
diff --git a/english/aspose.cells/markdownsaveoptions/check_excel_restriction/_index.md b/english/aspose.cells/markdownsaveoptions/check_excel_restriction/_index.md
new file mode 100644
index 0000000000..3abc4da5fd
--- /dev/null
+++ b/english/aspose.cells/markdownsaveoptions/check_excel_restriction/_index.md
@@ -0,0 +1,29 @@
+---
+title: check_excel_restriction property
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 40
+url: /aspose.cells/markdownsaveoptions/check_excel_restriction/
+is_root: false
+---
+
+## check_excel_restriction property
+
+
+Whether check restriction of excel file when user modify cells related objects.
+For example, excel does not allow inputting string value longer than 32K.
+When you input a value longer than 32K, it will be truncated.
+### Definition:
+```python
+@property
+def check_excel_restriction(self):
+ ...
+@check_excel_restriction.setter
+def check_excel_restriction(self, value):
+ ...
+```
+
+### See Also
+* module [`aspose.cells`](../../)
+* class [`MarkdownSaveOptions`](/cells/python-net/aspose.cells/markdownsaveoptions)
diff --git a/english/aspose.cells/markdownsaveoptions/clear_data/_index.md b/english/aspose.cells/markdownsaveoptions/clear_data/_index.md
index 837a1eaaac..3b9f66c7b1 100644
--- a/english/aspose.cells/markdownsaveoptions/clear_data/_index.md
+++ b/english/aspose.cells/markdownsaveoptions/clear_data/_index.md
@@ -3,7 +3,7 @@ title: clear_data property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 40
+weight: 50
url: /aspose.cells/markdownsaveoptions/clear_data/
is_root: false
---
diff --git a/english/aspose.cells/markdownsaveoptions/create_directory/_index.md b/english/aspose.cells/markdownsaveoptions/create_directory/_index.md
index 1ae34f5ad3..59daa99f8d 100644
--- a/english/aspose.cells/markdownsaveoptions/create_directory/_index.md
+++ b/english/aspose.cells/markdownsaveoptions/create_directory/_index.md
@@ -3,7 +3,7 @@ title: create_directory property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 50
+weight: 60
url: /aspose.cells/markdownsaveoptions/create_directory/
is_root: false
---
diff --git a/english/aspose.cells/markdownsaveoptions/encoding/_index.md b/english/aspose.cells/markdownsaveoptions/encoding/_index.md
index 50067502f2..de0eccf9bb 100644
--- a/english/aspose.cells/markdownsaveoptions/encoding/_index.md
+++ b/english/aspose.cells/markdownsaveoptions/encoding/_index.md
@@ -3,7 +3,7 @@ title: encoding property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 60
+weight: 70
url: /aspose.cells/markdownsaveoptions/encoding/
is_root: false
---
diff --git a/english/aspose.cells/markdownsaveoptions/encrypt_document_properties/_index.md b/english/aspose.cells/markdownsaveoptions/encrypt_document_properties/_index.md
index a6fa35ae0b..fec37c9d06 100644
--- a/english/aspose.cells/markdownsaveoptions/encrypt_document_properties/_index.md
+++ b/english/aspose.cells/markdownsaveoptions/encrypt_document_properties/_index.md
@@ -3,7 +3,7 @@ title: encrypt_document_properties property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 70
+weight: 80
url: /aspose.cells/markdownsaveoptions/encrypt_document_properties/
is_root: false
---
diff --git a/english/aspose.cells/markdownsaveoptions/format_strategy/_index.md b/english/aspose.cells/markdownsaveoptions/format_strategy/_index.md
index 5e8ec26fa3..53d915739c 100644
--- a/english/aspose.cells/markdownsaveoptions/format_strategy/_index.md
+++ b/english/aspose.cells/markdownsaveoptions/format_strategy/_index.md
@@ -3,7 +3,7 @@ title: format_strategy property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 80
+weight: 90
url: /aspose.cells/markdownsaveoptions/format_strategy/
is_root: false
---
diff --git a/english/aspose.cells/markdownsaveoptions/light_cells_data_provider/_index.md b/english/aspose.cells/markdownsaveoptions/light_cells_data_provider/_index.md
index 36136c269f..0bf798e8b3 100644
--- a/english/aspose.cells/markdownsaveoptions/light_cells_data_provider/_index.md
+++ b/english/aspose.cells/markdownsaveoptions/light_cells_data_provider/_index.md
@@ -3,7 +3,7 @@ title: light_cells_data_provider property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 90
+weight: 100
url: /aspose.cells/markdownsaveoptions/light_cells_data_provider/
is_root: false
---
diff --git a/english/aspose.cells/markdownsaveoptions/line_separator/_index.md b/english/aspose.cells/markdownsaveoptions/line_separator/_index.md
index 1b03b3eb0c..e41c1bf7e0 100644
--- a/english/aspose.cells/markdownsaveoptions/line_separator/_index.md
+++ b/english/aspose.cells/markdownsaveoptions/line_separator/_index.md
@@ -3,7 +3,7 @@ title: line_separator property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 100
+weight: 110
url: /aspose.cells/markdownsaveoptions/line_separator/
is_root: false
---
diff --git a/english/aspose.cells/markdownsaveoptions/merge_areas/_index.md b/english/aspose.cells/markdownsaveoptions/merge_areas/_index.md
index bb2efd7575..2e34a240d1 100644
--- a/english/aspose.cells/markdownsaveoptions/merge_areas/_index.md
+++ b/english/aspose.cells/markdownsaveoptions/merge_areas/_index.md
@@ -3,7 +3,7 @@ title: merge_areas property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 110
+weight: 120
url: /aspose.cells/markdownsaveoptions/merge_areas/
is_root: false
---
diff --git a/english/aspose.cells/markdownsaveoptions/refresh_chart_cache/_index.md b/english/aspose.cells/markdownsaveoptions/refresh_chart_cache/_index.md
index 664dfa04ea..13006f40bb 100644
--- a/english/aspose.cells/markdownsaveoptions/refresh_chart_cache/_index.md
+++ b/english/aspose.cells/markdownsaveoptions/refresh_chart_cache/_index.md
@@ -3,7 +3,7 @@ title: refresh_chart_cache property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 120
+weight: 130
url: /aspose.cells/markdownsaveoptions/refresh_chart_cache/
is_root: false
---
diff --git a/english/aspose.cells/markdownsaveoptions/save_format/_index.md b/english/aspose.cells/markdownsaveoptions/save_format/_index.md
index 9a466cf8a3..c38a711d49 100644
--- a/english/aspose.cells/markdownsaveoptions/save_format/_index.md
+++ b/english/aspose.cells/markdownsaveoptions/save_format/_index.md
@@ -3,7 +3,7 @@ title: save_format property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 130
+weight: 140
url: /aspose.cells/markdownsaveoptions/save_format/
is_root: false
---
diff --git a/english/aspose.cells/markdownsaveoptions/sort_external_names/_index.md b/english/aspose.cells/markdownsaveoptions/sort_external_names/_index.md
index 641493d936..1003cb473f 100644
--- a/english/aspose.cells/markdownsaveoptions/sort_external_names/_index.md
+++ b/english/aspose.cells/markdownsaveoptions/sort_external_names/_index.md
@@ -3,7 +3,7 @@ title: sort_external_names property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 140
+weight: 150
url: /aspose.cells/markdownsaveoptions/sort_external_names/
is_root: false
---
diff --git a/english/aspose.cells/markdownsaveoptions/sort_names/_index.md b/english/aspose.cells/markdownsaveoptions/sort_names/_index.md
index d26141ec15..5f09a3d0ad 100644
--- a/english/aspose.cells/markdownsaveoptions/sort_names/_index.md
+++ b/english/aspose.cells/markdownsaveoptions/sort_names/_index.md
@@ -3,7 +3,7 @@ title: sort_names property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 150
+weight: 160
url: /aspose.cells/markdownsaveoptions/sort_names/
is_root: false
---
diff --git a/english/aspose.cells/markdownsaveoptions/update_smart_art/_index.md b/english/aspose.cells/markdownsaveoptions/update_smart_art/_index.md
index 885574b4ea..cc79d7a7d6 100644
--- a/english/aspose.cells/markdownsaveoptions/update_smart_art/_index.md
+++ b/english/aspose.cells/markdownsaveoptions/update_smart_art/_index.md
@@ -3,7 +3,7 @@ title: update_smart_art property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 160
+weight: 170
url: /aspose.cells/markdownsaveoptions/update_smart_art/
is_root: false
---
diff --git a/english/aspose.cells/markdownsaveoptions/validate_merged_areas/_index.md b/english/aspose.cells/markdownsaveoptions/validate_merged_areas/_index.md
index 8baa04cea6..69962e3528 100644
--- a/english/aspose.cells/markdownsaveoptions/validate_merged_areas/_index.md
+++ b/english/aspose.cells/markdownsaveoptions/validate_merged_areas/_index.md
@@ -3,7 +3,7 @@ title: validate_merged_areas property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 170
+weight: 180
url: /aspose.cells/markdownsaveoptions/validate_merged_areas/
is_root: false
---
diff --git a/english/aspose.cells/markdownsaveoptions/warning_callback/_index.md b/english/aspose.cells/markdownsaveoptions/warning_callback/_index.md
index ef862bf1fc..0479464174 100644
--- a/english/aspose.cells/markdownsaveoptions/warning_callback/_index.md
+++ b/english/aspose.cells/markdownsaveoptions/warning_callback/_index.md
@@ -3,7 +3,7 @@ title: warning_callback property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 180
+weight: 190
url: /aspose.cells/markdownsaveoptions/warning_callback/
is_root: false
---
diff --git a/english/aspose.cells/memoryfontsource/_index.md b/english/aspose.cells/memoryfontsource/_index.md
index fc30af348d..9eb920a225 100644
--- a/english/aspose.cells/memoryfontsource/_index.md
+++ b/english/aspose.cells/memoryfontsource/_index.md
@@ -3,7 +3,7 @@ title: MemoryFontSource class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1110
+weight: 1120
url: /aspose.cells/memoryfontsource/
is_root: false
---
diff --git a/english/aspose.cells/memorysetting/_index.md b/english/aspose.cells/memorysetting/_index.md
index 3049b9c1ef..f3305a339c 100644
--- a/english/aspose.cells/memorysetting/_index.md
+++ b/english/aspose.cells/memorysetting/_index.md
@@ -3,7 +3,7 @@ title: MemorySetting enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2410
+weight: 2430
url: /aspose.cells/memorysetting/
is_root: false
---
diff --git a/english/aspose.cells/mergedcellsshrinktype/_index.md b/english/aspose.cells/mergedcellsshrinktype/_index.md
index 128444c4a3..ee22358f6b 100644
--- a/english/aspose.cells/mergedcellsshrinktype/_index.md
+++ b/english/aspose.cells/mergedcellsshrinktype/_index.md
@@ -3,7 +3,7 @@ title: MergedCellsShrinkType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2430
+weight: 2450
url: /aspose.cells/mergedcellsshrinktype/
is_root: false
---
diff --git a/english/aspose.cells/mergeemptytdtype/_index.md b/english/aspose.cells/mergeemptytdtype/_index.md
index bc03537e1b..39023a61db 100644
--- a/english/aspose.cells/mergeemptytdtype/_index.md
+++ b/english/aspose.cells/mergeemptytdtype/_index.md
@@ -3,7 +3,7 @@ title: MergeEmptyTdType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2420
+weight: 2440
url: /aspose.cells/mergeemptytdtype/
is_root: false
---
diff --git a/english/aspose.cells/metered/_index.md b/english/aspose.cells/metered/_index.md
index 156b3d41ef..ea8417769e 100644
--- a/english/aspose.cells/metered/_index.md
+++ b/english/aspose.cells/metered/_index.md
@@ -3,7 +3,7 @@ title: Metered class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1120
+weight: 1130
url: /aspose.cells/metered/
is_root: false
---
diff --git a/english/aspose.cells/multiplefiltercollection/_index.md b/english/aspose.cells/multiplefiltercollection/_index.md
index 007dbd8d46..a73cbe3bb6 100644
--- a/english/aspose.cells/multiplefiltercollection/_index.md
+++ b/english/aspose.cells/multiplefiltercollection/_index.md
@@ -3,7 +3,7 @@ title: MultipleFilterCollection class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1130
+weight: 1140
url: /aspose.cells/multiplefiltercollection/
is_root: false
---
diff --git a/english/aspose.cells/name/_index.md b/english/aspose.cells/name/_index.md
index c01596c2ee..ea0b42afbb 100644
--- a/english/aspose.cells/name/_index.md
+++ b/english/aspose.cells/name/_index.md
@@ -3,7 +3,7 @@ title: Name class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1140
+weight: 1150
url: /aspose.cells/name/
is_root: false
---
diff --git a/english/aspose.cells/namecollection/_index.md b/english/aspose.cells/namecollection/_index.md
index cd2d099293..9f762fa017 100644
--- a/english/aspose.cells/namecollection/_index.md
+++ b/english/aspose.cells/namecollection/_index.md
@@ -3,7 +3,7 @@ title: NameCollection class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1150
+weight: 1160
url: /aspose.cells/namecollection/
is_root: false
---
diff --git a/english/aspose.cells/namescopetype/_index.md b/english/aspose.cells/namescopetype/_index.md
index 27059d5dce..cc8570ce94 100644
--- a/english/aspose.cells/namescopetype/_index.md
+++ b/english/aspose.cells/namescopetype/_index.md
@@ -3,7 +3,7 @@ title: NameScopeType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2440
+weight: 2460
url: /aspose.cells/namescopetype/
is_root: false
---
diff --git a/english/aspose.cells/negativebarformat/_index.md b/english/aspose.cells/negativebarformat/_index.md
index e84ed2ba62..a18ad3fadf 100644
--- a/english/aspose.cells/negativebarformat/_index.md
+++ b/english/aspose.cells/negativebarformat/_index.md
@@ -3,7 +3,7 @@ title: NegativeBarFormat class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1160
+weight: 1170
url: /aspose.cells/negativebarformat/
is_root: false
---
diff --git a/english/aspose.cells/numbercategorytype/_index.md b/english/aspose.cells/numbercategorytype/_index.md
index 9f712d4b03..2aff6abe5d 100644
--- a/english/aspose.cells/numbercategorytype/_index.md
+++ b/english/aspose.cells/numbercategorytype/_index.md
@@ -3,7 +3,7 @@ title: NumberCategoryType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2450
+weight: 2470
url: /aspose.cells/numbercategorytype/
is_root: false
---
diff --git a/english/aspose.cells/odsloadoptions/_index.md b/english/aspose.cells/odsloadoptions/_index.md
index b59139abab..eca5ef4946 100644
--- a/english/aspose.cells/odsloadoptions/_index.md
+++ b/english/aspose.cells/odsloadoptions/_index.md
@@ -3,7 +3,7 @@ title: OdsLoadOptions class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1170
+weight: 1180
url: /aspose.cells/odsloadoptions/
is_root: false
---
diff --git a/english/aspose.cells/odssaveoptions/_index.md b/english/aspose.cells/odssaveoptions/_index.md
index b8d6a2ec00..f256b1ee66 100644
--- a/english/aspose.cells/odssaveoptions/_index.md
+++ b/english/aspose.cells/odssaveoptions/_index.md
@@ -3,7 +3,7 @@ title: OdsSaveOptions class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1180
+weight: 1190
url: /aspose.cells/odssaveoptions/
is_root: false
---
@@ -41,6 +41,7 @@ The OdsSaveOptions type exposes the following members:
| [sort_external_names](/cells/python-net/aspose.cells/odssaveoptions/sort_external_names) | Indicates whether sorting external defined names before saving file. |
| [refresh_chart_cache](/cells/python-net/aspose.cells/odssaveoptions/refresh_chart_cache) | Indicates whether refreshing chart cache data |
| [warning_callback](/cells/python-net/aspose.cells/odssaveoptions/warning_callback) | Gets or sets warning callback. |
+| [check_excel_restriction](/cells/python-net/aspose.cells/odssaveoptions/check_excel_restriction) | Whether check restriction of excel file when user modify cells related objects.
For example, excel does not allow inputting string value longer than 32K.
When you input a value longer than 32K, it will be truncated. |
| [update_smart_art](/cells/python-net/aspose.cells/odssaveoptions/update_smart_art) | Indicates whether updating smart art setting.
The default value is false. |
| [encrypt_document_properties](/cells/python-net/aspose.cells/odssaveoptions/encrypt_document_properties) | Indicates whether encrypt document properties when saving as .xls file.
The default value is true. |
| [generator_type](/cells/python-net/aspose.cells/odssaveoptions/generator_type) | Gets and sets the generator of the ods file. |
diff --git a/english/aspose.cells/odssaveoptions/check_excel_restriction/_index.md b/english/aspose.cells/odssaveoptions/check_excel_restriction/_index.md
new file mode 100644
index 0000000000..e8156b0556
--- /dev/null
+++ b/english/aspose.cells/odssaveoptions/check_excel_restriction/_index.md
@@ -0,0 +1,29 @@
+---
+title: check_excel_restriction property
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 40
+url: /aspose.cells/odssaveoptions/check_excel_restriction/
+is_root: false
+---
+
+## check_excel_restriction property
+
+
+Whether check restriction of excel file when user modify cells related objects.
+For example, excel does not allow inputting string value longer than 32K.
+When you input a value longer than 32K, it will be truncated.
+### Definition:
+```python
+@property
+def check_excel_restriction(self):
+ ...
+@check_excel_restriction.setter
+def check_excel_restriction(self, value):
+ ...
+```
+
+### See Also
+* module [`aspose.cells`](../../)
+* class [`OdsSaveOptions`](/cells/python-net/aspose.cells/odssaveoptions)
diff --git a/english/aspose.cells/odssaveoptions/clear_data/_index.md b/english/aspose.cells/odssaveoptions/clear_data/_index.md
index 54156bbb0b..c16a895fd8 100644
--- a/english/aspose.cells/odssaveoptions/clear_data/_index.md
+++ b/english/aspose.cells/odssaveoptions/clear_data/_index.md
@@ -3,7 +3,7 @@ title: clear_data property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 40
+weight: 50
url: /aspose.cells/odssaveoptions/clear_data/
is_root: false
---
diff --git a/english/aspose.cells/odssaveoptions/create_directory/_index.md b/english/aspose.cells/odssaveoptions/create_directory/_index.md
index d74737e7ee..0bd4035971 100644
--- a/english/aspose.cells/odssaveoptions/create_directory/_index.md
+++ b/english/aspose.cells/odssaveoptions/create_directory/_index.md
@@ -3,7 +3,7 @@ title: create_directory property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 50
+weight: 60
url: /aspose.cells/odssaveoptions/create_directory/
is_root: false
---
diff --git a/english/aspose.cells/odssaveoptions/encrypt_document_properties/_index.md b/english/aspose.cells/odssaveoptions/encrypt_document_properties/_index.md
index 24da55155a..05c3bd6068 100644
--- a/english/aspose.cells/odssaveoptions/encrypt_document_properties/_index.md
+++ b/english/aspose.cells/odssaveoptions/encrypt_document_properties/_index.md
@@ -3,7 +3,7 @@ title: encrypt_document_properties property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 60
+weight: 70
url: /aspose.cells/odssaveoptions/encrypt_document_properties/
is_root: false
---
diff --git a/english/aspose.cells/odssaveoptions/generator_type/_index.md b/english/aspose.cells/odssaveoptions/generator_type/_index.md
index 974ce8bdac..04bd0eb579 100644
--- a/english/aspose.cells/odssaveoptions/generator_type/_index.md
+++ b/english/aspose.cells/odssaveoptions/generator_type/_index.md
@@ -3,7 +3,7 @@ title: generator_type property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 70
+weight: 80
url: /aspose.cells/odssaveoptions/generator_type/
is_root: false
---
diff --git a/english/aspose.cells/odssaveoptions/ignore_pivot_tables/_index.md b/english/aspose.cells/odssaveoptions/ignore_pivot_tables/_index.md
index 97658580ea..789395d1b1 100644
--- a/english/aspose.cells/odssaveoptions/ignore_pivot_tables/_index.md
+++ b/english/aspose.cells/odssaveoptions/ignore_pivot_tables/_index.md
@@ -3,7 +3,7 @@ title: ignore_pivot_tables property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 80
+weight: 90
url: /aspose.cells/odssaveoptions/ignore_pivot_tables/
is_root: false
---
diff --git a/english/aspose.cells/odssaveoptions/is_strict_schema11/_index.md b/english/aspose.cells/odssaveoptions/is_strict_schema11/_index.md
index 010a6b7239..aee8b0b2d0 100644
--- a/english/aspose.cells/odssaveoptions/is_strict_schema11/_index.md
+++ b/english/aspose.cells/odssaveoptions/is_strict_schema11/_index.md
@@ -3,7 +3,7 @@ title: is_strict_schema11 property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 90
+weight: 100
url: /aspose.cells/odssaveoptions/is_strict_schema11/
is_root: false
---
diff --git a/english/aspose.cells/odssaveoptions/merge_areas/_index.md b/english/aspose.cells/odssaveoptions/merge_areas/_index.md
index eec97ae069..5a17a87165 100644
--- a/english/aspose.cells/odssaveoptions/merge_areas/_index.md
+++ b/english/aspose.cells/odssaveoptions/merge_areas/_index.md
@@ -3,7 +3,7 @@ title: merge_areas property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 100
+weight: 110
url: /aspose.cells/odssaveoptions/merge_areas/
is_root: false
---
diff --git a/english/aspose.cells/odssaveoptions/odf_strict_version/_index.md b/english/aspose.cells/odssaveoptions/odf_strict_version/_index.md
index 6e27651f44..b6baec5c30 100644
--- a/english/aspose.cells/odssaveoptions/odf_strict_version/_index.md
+++ b/english/aspose.cells/odssaveoptions/odf_strict_version/_index.md
@@ -3,7 +3,7 @@ title: odf_strict_version property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 110
+weight: 120
url: /aspose.cells/odssaveoptions/odf_strict_version/
is_root: false
---
diff --git a/english/aspose.cells/odssaveoptions/refresh_chart_cache/_index.md b/english/aspose.cells/odssaveoptions/refresh_chart_cache/_index.md
index 66d2066dbc..897261e737 100644
--- a/english/aspose.cells/odssaveoptions/refresh_chart_cache/_index.md
+++ b/english/aspose.cells/odssaveoptions/refresh_chart_cache/_index.md
@@ -3,7 +3,7 @@ title: refresh_chart_cache property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 120
+weight: 130
url: /aspose.cells/odssaveoptions/refresh_chart_cache/
is_root: false
---
diff --git a/english/aspose.cells/odssaveoptions/save_format/_index.md b/english/aspose.cells/odssaveoptions/save_format/_index.md
index c4c6cbd07b..639ef91301 100644
--- a/english/aspose.cells/odssaveoptions/save_format/_index.md
+++ b/english/aspose.cells/odssaveoptions/save_format/_index.md
@@ -3,7 +3,7 @@ title: save_format property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 130
+weight: 140
url: /aspose.cells/odssaveoptions/save_format/
is_root: false
---
diff --git a/english/aspose.cells/odssaveoptions/sort_external_names/_index.md b/english/aspose.cells/odssaveoptions/sort_external_names/_index.md
index 324aa54089..f3c0ff63f5 100644
--- a/english/aspose.cells/odssaveoptions/sort_external_names/_index.md
+++ b/english/aspose.cells/odssaveoptions/sort_external_names/_index.md
@@ -3,7 +3,7 @@ title: sort_external_names property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 140
+weight: 150
url: /aspose.cells/odssaveoptions/sort_external_names/
is_root: false
---
diff --git a/english/aspose.cells/odssaveoptions/sort_names/_index.md b/english/aspose.cells/odssaveoptions/sort_names/_index.md
index c0903c9aa7..e3a213bac5 100644
--- a/english/aspose.cells/odssaveoptions/sort_names/_index.md
+++ b/english/aspose.cells/odssaveoptions/sort_names/_index.md
@@ -3,7 +3,7 @@ title: sort_names property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 150
+weight: 160
url: /aspose.cells/odssaveoptions/sort_names/
is_root: false
---
diff --git a/english/aspose.cells/odssaveoptions/update_smart_art/_index.md b/english/aspose.cells/odssaveoptions/update_smart_art/_index.md
index daa3a6b3ff..51b75b000f 100644
--- a/english/aspose.cells/odssaveoptions/update_smart_art/_index.md
+++ b/english/aspose.cells/odssaveoptions/update_smart_art/_index.md
@@ -3,7 +3,7 @@ title: update_smart_art property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 160
+weight: 170
url: /aspose.cells/odssaveoptions/update_smart_art/
is_root: false
---
diff --git a/english/aspose.cells/odssaveoptions/validate_merged_areas/_index.md b/english/aspose.cells/odssaveoptions/validate_merged_areas/_index.md
index 42a93db436..2869e6efeb 100644
--- a/english/aspose.cells/odssaveoptions/validate_merged_areas/_index.md
+++ b/english/aspose.cells/odssaveoptions/validate_merged_areas/_index.md
@@ -3,7 +3,7 @@ title: validate_merged_areas property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 170
+weight: 180
url: /aspose.cells/odssaveoptions/validate_merged_areas/
is_root: false
---
diff --git a/english/aspose.cells/odssaveoptions/warning_callback/_index.md b/english/aspose.cells/odssaveoptions/warning_callback/_index.md
index f5f1dfa967..886087f2da 100644
--- a/english/aspose.cells/odssaveoptions/warning_callback/_index.md
+++ b/english/aspose.cells/odssaveoptions/warning_callback/_index.md
@@ -3,7 +3,7 @@ title: warning_callback property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 180
+weight: 190
url: /aspose.cells/odssaveoptions/warning_callback/
is_root: false
---
diff --git a/english/aspose.cells/ooxmlcompliance/_index.md b/english/aspose.cells/ooxmlcompliance/_index.md
index aa096f0d83..e7f821e698 100644
--- a/english/aspose.cells/ooxmlcompliance/_index.md
+++ b/english/aspose.cells/ooxmlcompliance/_index.md
@@ -3,7 +3,7 @@ title: OoxmlCompliance enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2460
+weight: 2480
url: /aspose.cells/ooxmlcompliance/
is_root: false
---
diff --git a/english/aspose.cells/ooxmlcompressiontype/_index.md b/english/aspose.cells/ooxmlcompressiontype/_index.md
index 7814e7f7ca..54db0c10e6 100644
--- a/english/aspose.cells/ooxmlcompressiontype/_index.md
+++ b/english/aspose.cells/ooxmlcompressiontype/_index.md
@@ -3,7 +3,7 @@ title: OoxmlCompressionType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2470
+weight: 2490
url: /aspose.cells/ooxmlcompressiontype/
is_root: false
---
diff --git a/english/aspose.cells/ooxmlsaveoptions/_index.md b/english/aspose.cells/ooxmlsaveoptions/_index.md
index d461b56b88..d89882fd32 100644
--- a/english/aspose.cells/ooxmlsaveoptions/_index.md
+++ b/english/aspose.cells/ooxmlsaveoptions/_index.md
@@ -3,7 +3,7 @@ title: OoxmlSaveOptions class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1190
+weight: 1200
url: /aspose.cells/ooxmlsaveoptions/
is_root: false
---
@@ -41,6 +41,7 @@ The OoxmlSaveOptions type exposes the following members:
| [sort_external_names](/cells/python-net/aspose.cells/ooxmlsaveoptions/sort_external_names) | Indicates whether sorting external defined names before saving file. |
| [refresh_chart_cache](/cells/python-net/aspose.cells/ooxmlsaveoptions/refresh_chart_cache) | Indicates whether refreshing chart cache data |
| [warning_callback](/cells/python-net/aspose.cells/ooxmlsaveoptions/warning_callback) | Gets or sets warning callback. |
+| [check_excel_restriction](/cells/python-net/aspose.cells/ooxmlsaveoptions/check_excel_restriction) | Whether check restriction of excel file when user modify cells related objects.
For example, excel does not allow inputting string value longer than 32K.
When you input a value longer than 32K, it will be truncated. |
| [update_smart_art](/cells/python-net/aspose.cells/ooxmlsaveoptions/update_smart_art) | Indicates whether updating smart art setting.
The default value is false. |
| [encrypt_document_properties](/cells/python-net/aspose.cells/ooxmlsaveoptions/encrypt_document_properties) | Indicates whether encrypt document properties when saving as .xls file.
The default value is true. |
| [export_cell_name](/cells/python-net/aspose.cells/ooxmlsaveoptions/export_cell_name) | Indicates if export cell name to Excel2007 .xlsx (.xlsm, .xltx, .xltm) file.
If the output file may be accessed by SQL Server DTS, this value must be true.
Setting the value to false will highly increase the performance and reduce the file size when creating large file.
Default value is true. |
diff --git a/english/aspose.cells/ooxmlsaveoptions/check_excel_restriction/_index.md b/english/aspose.cells/ooxmlsaveoptions/check_excel_restriction/_index.md
new file mode 100644
index 0000000000..f50e84ae45
--- /dev/null
+++ b/english/aspose.cells/ooxmlsaveoptions/check_excel_restriction/_index.md
@@ -0,0 +1,29 @@
+---
+title: check_excel_restriction property
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 40
+url: /aspose.cells/ooxmlsaveoptions/check_excel_restriction/
+is_root: false
+---
+
+## check_excel_restriction property
+
+
+Whether check restriction of excel file when user modify cells related objects.
+For example, excel does not allow inputting string value longer than 32K.
+When you input a value longer than 32K, it will be truncated.
+### Definition:
+```python
+@property
+def check_excel_restriction(self):
+ ...
+@check_excel_restriction.setter
+def check_excel_restriction(self, value):
+ ...
+```
+
+### See Also
+* module [`aspose.cells`](../../)
+* class [`OoxmlSaveOptions`](/cells/python-net/aspose.cells/ooxmlsaveoptions)
diff --git a/english/aspose.cells/ooxmlsaveoptions/clear_data/_index.md b/english/aspose.cells/ooxmlsaveoptions/clear_data/_index.md
index 1031199c3d..9f1294dede 100644
--- a/english/aspose.cells/ooxmlsaveoptions/clear_data/_index.md
+++ b/english/aspose.cells/ooxmlsaveoptions/clear_data/_index.md
@@ -3,7 +3,7 @@ title: clear_data property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 40
+weight: 50
url: /aspose.cells/ooxmlsaveoptions/clear_data/
is_root: false
---
diff --git a/english/aspose.cells/ooxmlsaveoptions/compression_type/_index.md b/english/aspose.cells/ooxmlsaveoptions/compression_type/_index.md
index 6213afe978..f3380a2e2b 100644
--- a/english/aspose.cells/ooxmlsaveoptions/compression_type/_index.md
+++ b/english/aspose.cells/ooxmlsaveoptions/compression_type/_index.md
@@ -3,7 +3,7 @@ title: compression_type property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 50
+weight: 60
url: /aspose.cells/ooxmlsaveoptions/compression_type/
is_root: false
---
diff --git a/english/aspose.cells/ooxmlsaveoptions/create_directory/_index.md b/english/aspose.cells/ooxmlsaveoptions/create_directory/_index.md
index c4fbfd8758..64a2045ef4 100644
--- a/english/aspose.cells/ooxmlsaveoptions/create_directory/_index.md
+++ b/english/aspose.cells/ooxmlsaveoptions/create_directory/_index.md
@@ -3,7 +3,7 @@ title: create_directory property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 60
+weight: 70
url: /aspose.cells/ooxmlsaveoptions/create_directory/
is_root: false
---
diff --git a/english/aspose.cells/ooxmlsaveoptions/embed_ooxml_as_ole_object/_index.md b/english/aspose.cells/ooxmlsaveoptions/embed_ooxml_as_ole_object/_index.md
index d07c67719c..9d1ad0ac01 100644
--- a/english/aspose.cells/ooxmlsaveoptions/embed_ooxml_as_ole_object/_index.md
+++ b/english/aspose.cells/ooxmlsaveoptions/embed_ooxml_as_ole_object/_index.md
@@ -3,7 +3,7 @@ title: embed_ooxml_as_ole_object property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 70
+weight: 80
url: /aspose.cells/ooxmlsaveoptions/embed_ooxml_as_ole_object/
is_root: false
---
diff --git a/english/aspose.cells/ooxmlsaveoptions/enable_zip64/_index.md b/english/aspose.cells/ooxmlsaveoptions/enable_zip64/_index.md
index bec0b60809..d7c01a5195 100644
--- a/english/aspose.cells/ooxmlsaveoptions/enable_zip64/_index.md
+++ b/english/aspose.cells/ooxmlsaveoptions/enable_zip64/_index.md
@@ -3,7 +3,7 @@ title: enable_zip64 property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 80
+weight: 90
url: /aspose.cells/ooxmlsaveoptions/enable_zip64/
is_root: false
---
diff --git a/english/aspose.cells/ooxmlsaveoptions/encrypt_document_properties/_index.md b/english/aspose.cells/ooxmlsaveoptions/encrypt_document_properties/_index.md
index 6d44603abb..12ba94d7e7 100644
--- a/english/aspose.cells/ooxmlsaveoptions/encrypt_document_properties/_index.md
+++ b/english/aspose.cells/ooxmlsaveoptions/encrypt_document_properties/_index.md
@@ -3,7 +3,7 @@ title: encrypt_document_properties property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 90
+weight: 100
url: /aspose.cells/ooxmlsaveoptions/encrypt_document_properties/
is_root: false
---
diff --git a/english/aspose.cells/ooxmlsaveoptions/export_cell_name/_index.md b/english/aspose.cells/ooxmlsaveoptions/export_cell_name/_index.md
index e152c33cac..27df0b2926 100644
--- a/english/aspose.cells/ooxmlsaveoptions/export_cell_name/_index.md
+++ b/english/aspose.cells/ooxmlsaveoptions/export_cell_name/_index.md
@@ -3,7 +3,7 @@ title: export_cell_name property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 100
+weight: 110
url: /aspose.cells/ooxmlsaveoptions/export_cell_name/
is_root: false
---
diff --git a/english/aspose.cells/ooxmlsaveoptions/light_cells_data_provider/_index.md b/english/aspose.cells/ooxmlsaveoptions/light_cells_data_provider/_index.md
index 88e676d29c..1b0c90f3ac 100644
--- a/english/aspose.cells/ooxmlsaveoptions/light_cells_data_provider/_index.md
+++ b/english/aspose.cells/ooxmlsaveoptions/light_cells_data_provider/_index.md
@@ -3,7 +3,7 @@ title: light_cells_data_provider property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 110
+weight: 120
url: /aspose.cells/ooxmlsaveoptions/light_cells_data_provider/
is_root: false
---
diff --git a/english/aspose.cells/ooxmlsaveoptions/merge_areas/_index.md b/english/aspose.cells/ooxmlsaveoptions/merge_areas/_index.md
index efce3d74a4..ef2382bc65 100644
--- a/english/aspose.cells/ooxmlsaveoptions/merge_areas/_index.md
+++ b/english/aspose.cells/ooxmlsaveoptions/merge_areas/_index.md
@@ -3,7 +3,7 @@ title: merge_areas property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 120
+weight: 130
url: /aspose.cells/ooxmlsaveoptions/merge_areas/
is_root: false
---
diff --git a/english/aspose.cells/ooxmlsaveoptions/refresh_chart_cache/_index.md b/english/aspose.cells/ooxmlsaveoptions/refresh_chart_cache/_index.md
index aef5f055e8..f53bbc71d6 100644
--- a/english/aspose.cells/ooxmlsaveoptions/refresh_chart_cache/_index.md
+++ b/english/aspose.cells/ooxmlsaveoptions/refresh_chart_cache/_index.md
@@ -3,7 +3,7 @@ title: refresh_chart_cache property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 130
+weight: 140
url: /aspose.cells/ooxmlsaveoptions/refresh_chart_cache/
is_root: false
---
diff --git a/english/aspose.cells/ooxmlsaveoptions/save_format/_index.md b/english/aspose.cells/ooxmlsaveoptions/save_format/_index.md
index 5ed088597e..c823f24813 100644
--- a/english/aspose.cells/ooxmlsaveoptions/save_format/_index.md
+++ b/english/aspose.cells/ooxmlsaveoptions/save_format/_index.md
@@ -3,7 +3,7 @@ title: save_format property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 140
+weight: 150
url: /aspose.cells/ooxmlsaveoptions/save_format/
is_root: false
---
diff --git a/english/aspose.cells/ooxmlsaveoptions/sort_external_names/_index.md b/english/aspose.cells/ooxmlsaveoptions/sort_external_names/_index.md
index fa2206efb6..dae07d1bfe 100644
--- a/english/aspose.cells/ooxmlsaveoptions/sort_external_names/_index.md
+++ b/english/aspose.cells/ooxmlsaveoptions/sort_external_names/_index.md
@@ -3,7 +3,7 @@ title: sort_external_names property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 150
+weight: 160
url: /aspose.cells/ooxmlsaveoptions/sort_external_names/
is_root: false
---
diff --git a/english/aspose.cells/ooxmlsaveoptions/sort_names/_index.md b/english/aspose.cells/ooxmlsaveoptions/sort_names/_index.md
index f1aa7b25c3..6759a2f173 100644
--- a/english/aspose.cells/ooxmlsaveoptions/sort_names/_index.md
+++ b/english/aspose.cells/ooxmlsaveoptions/sort_names/_index.md
@@ -3,7 +3,7 @@ title: sort_names property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 160
+weight: 170
url: /aspose.cells/ooxmlsaveoptions/sort_names/
is_root: false
---
diff --git a/english/aspose.cells/ooxmlsaveoptions/update_smart_art/_index.md b/english/aspose.cells/ooxmlsaveoptions/update_smart_art/_index.md
index d749886216..f81296dd9c 100644
--- a/english/aspose.cells/ooxmlsaveoptions/update_smart_art/_index.md
+++ b/english/aspose.cells/ooxmlsaveoptions/update_smart_art/_index.md
@@ -3,7 +3,7 @@ title: update_smart_art property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 170
+weight: 180
url: /aspose.cells/ooxmlsaveoptions/update_smart_art/
is_root: false
---
diff --git a/english/aspose.cells/ooxmlsaveoptions/update_zoom/_index.md b/english/aspose.cells/ooxmlsaveoptions/update_zoom/_index.md
index c1bc1df415..b99ad028ba 100644
--- a/english/aspose.cells/ooxmlsaveoptions/update_zoom/_index.md
+++ b/english/aspose.cells/ooxmlsaveoptions/update_zoom/_index.md
@@ -3,7 +3,7 @@ title: update_zoom property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 180
+weight: 190
url: /aspose.cells/ooxmlsaveoptions/update_zoom/
is_root: false
---
diff --git a/english/aspose.cells/ooxmlsaveoptions/validate_merged_areas/_index.md b/english/aspose.cells/ooxmlsaveoptions/validate_merged_areas/_index.md
index f0c8929875..ee5b49e163 100644
--- a/english/aspose.cells/ooxmlsaveoptions/validate_merged_areas/_index.md
+++ b/english/aspose.cells/ooxmlsaveoptions/validate_merged_areas/_index.md
@@ -3,7 +3,7 @@ title: validate_merged_areas property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 190
+weight: 200
url: /aspose.cells/ooxmlsaveoptions/validate_merged_areas/
is_root: false
---
diff --git a/english/aspose.cells/ooxmlsaveoptions/warning_callback/_index.md b/english/aspose.cells/ooxmlsaveoptions/warning_callback/_index.md
index cbac1c4692..2448883561 100644
--- a/english/aspose.cells/ooxmlsaveoptions/warning_callback/_index.md
+++ b/english/aspose.cells/ooxmlsaveoptions/warning_callback/_index.md
@@ -3,7 +3,7 @@ title: warning_callback property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 200
+weight: 210
url: /aspose.cells/ooxmlsaveoptions/warning_callback/
is_root: false
---
diff --git a/english/aspose.cells/operatortype/_index.md b/english/aspose.cells/operatortype/_index.md
index 68a8ded2d2..4cb21a14b6 100644
--- a/english/aspose.cells/operatortype/_index.md
+++ b/english/aspose.cells/operatortype/_index.md
@@ -3,7 +3,7 @@ title: OperatorType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2480
+weight: 2500
url: /aspose.cells/operatortype/
is_root: false
---
diff --git a/english/aspose.cells/outline/_index.md b/english/aspose.cells/outline/_index.md
index 4782cf8f67..0fb4cc603e 100644
--- a/english/aspose.cells/outline/_index.md
+++ b/english/aspose.cells/outline/_index.md
@@ -3,7 +3,7 @@ title: Outline class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1200
+weight: 1210
url: /aspose.cells/outline/
is_root: false
---
diff --git a/english/aspose.cells/pagelayoutalignmenttype/_index.md b/english/aspose.cells/pagelayoutalignmenttype/_index.md
index e966aee40a..e47004c049 100644
--- a/english/aspose.cells/pagelayoutalignmenttype/_index.md
+++ b/english/aspose.cells/pagelayoutalignmenttype/_index.md
@@ -3,7 +3,7 @@ title: PageLayoutAlignmentType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2490
+weight: 2510
url: /aspose.cells/pagelayoutalignmenttype/
is_root: false
---
diff --git a/english/aspose.cells/pageorientationtype/_index.md b/english/aspose.cells/pageorientationtype/_index.md
index 8aaa89f995..8572b004c2 100644
--- a/english/aspose.cells/pageorientationtype/_index.md
+++ b/english/aspose.cells/pageorientationtype/_index.md
@@ -3,7 +3,7 @@ title: PageOrientationType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2500
+weight: 2520
url: /aspose.cells/pageorientationtype/
is_root: false
---
diff --git a/english/aspose.cells/pagesetup/_index.md b/english/aspose.cells/pagesetup/_index.md
index d9f13c3009..a5b48b8736 100644
--- a/english/aspose.cells/pagesetup/_index.md
+++ b/english/aspose.cells/pagesetup/_index.md
@@ -3,7 +3,7 @@ title: PageSetup class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1210
+weight: 1220
url: /aspose.cells/pagesetup/
is_root: false
---
diff --git a/english/aspose.cells/paginatedsaveoptions/_index.md b/english/aspose.cells/paginatedsaveoptions/_index.md
index 2c34dde404..9a2fa69747 100644
--- a/english/aspose.cells/paginatedsaveoptions/_index.md
+++ b/english/aspose.cells/paginatedsaveoptions/_index.md
@@ -3,7 +3,7 @@ title: PaginatedSaveOptions class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1220
+weight: 1230
url: /aspose.cells/paginatedsaveoptions/
is_root: false
---
@@ -34,6 +34,7 @@ The PaginatedSaveOptions type exposes the following members:
| [sort_external_names](/cells/python-net/aspose.cells/paginatedsaveoptions/sort_external_names) | Indicates whether sorting external defined names before saving file. |
| [refresh_chart_cache](/cells/python-net/aspose.cells/paginatedsaveoptions/refresh_chart_cache) | Indicates whether refreshing chart cache data |
| [warning_callback](/cells/python-net/aspose.cells/paginatedsaveoptions/warning_callback) | Gets or sets warning callback. |
+| [check_excel_restriction](/cells/python-net/aspose.cells/paginatedsaveoptions/check_excel_restriction) | Whether check restriction of excel file when user modify cells related objects.
For example, excel does not allow inputting string value longer than 32K.
When you input a value longer than 32K, it will be truncated. |
| [update_smart_art](/cells/python-net/aspose.cells/paginatedsaveoptions/update_smart_art) | Indicates whether updating smart art setting.
The default value is false. |
| [encrypt_document_properties](/cells/python-net/aspose.cells/paginatedsaveoptions/encrypt_document_properties) | Indicates whether encrypt document properties when saving as .xls file.
The default value is true. |
| [default_font](/cells/python-net/aspose.cells/paginatedsaveoptions/default_font) | When characters in the Excel are Unicode and not be set with correct font in cell style,
They may appear as block in pdf,image.
Set the DefaultFont such as MingLiu or MS Gothic to show these characters.
If this property is not set, Aspose.Cells will use system default font to show these unicode characters. |
diff --git a/english/aspose.cells/paginatedsaveoptions/check_excel_restriction/_index.md b/english/aspose.cells/paginatedsaveoptions/check_excel_restriction/_index.md
new file mode 100644
index 0000000000..5cce6cbaf4
--- /dev/null
+++ b/english/aspose.cells/paginatedsaveoptions/check_excel_restriction/_index.md
@@ -0,0 +1,29 @@
+---
+title: check_excel_restriction property
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 50
+url: /aspose.cells/paginatedsaveoptions/check_excel_restriction/
+is_root: false
+---
+
+## check_excel_restriction property
+
+
+Whether check restriction of excel file when user modify cells related objects.
+For example, excel does not allow inputting string value longer than 32K.
+When you input a value longer than 32K, it will be truncated.
+### Definition:
+```python
+@property
+def check_excel_restriction(self):
+ ...
+@check_excel_restriction.setter
+def check_excel_restriction(self, value):
+ ...
+```
+
+### See Also
+* module [`aspose.cells`](../../)
+* class [`PaginatedSaveOptions`](/cells/python-net/aspose.cells/paginatedsaveoptions)
diff --git a/english/aspose.cells/paginatedsaveoptions/check_font_compatibility/_index.md b/english/aspose.cells/paginatedsaveoptions/check_font_compatibility/_index.md
index 6155fc3bad..31f611679d 100644
--- a/english/aspose.cells/paginatedsaveoptions/check_font_compatibility/_index.md
+++ b/english/aspose.cells/paginatedsaveoptions/check_font_compatibility/_index.md
@@ -3,7 +3,7 @@ title: check_font_compatibility property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 50
+weight: 60
url: /aspose.cells/paginatedsaveoptions/check_font_compatibility/
is_root: false
---
diff --git a/english/aspose.cells/paginatedsaveoptions/check_workbook_default_font/_index.md b/english/aspose.cells/paginatedsaveoptions/check_workbook_default_font/_index.md
index d10f21fee5..5d5007677d 100644
--- a/english/aspose.cells/paginatedsaveoptions/check_workbook_default_font/_index.md
+++ b/english/aspose.cells/paginatedsaveoptions/check_workbook_default_font/_index.md
@@ -3,7 +3,7 @@ title: check_workbook_default_font property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 60
+weight: 70
url: /aspose.cells/paginatedsaveoptions/check_workbook_default_font/
is_root: false
---
diff --git a/english/aspose.cells/paginatedsaveoptions/clear_data/_index.md b/english/aspose.cells/paginatedsaveoptions/clear_data/_index.md
index 3fb1945205..f374c97eb1 100644
--- a/english/aspose.cells/paginatedsaveoptions/clear_data/_index.md
+++ b/english/aspose.cells/paginatedsaveoptions/clear_data/_index.md
@@ -3,7 +3,7 @@ title: clear_data property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 70
+weight: 80
url: /aspose.cells/paginatedsaveoptions/clear_data/
is_root: false
---
diff --git a/english/aspose.cells/paginatedsaveoptions/create_directory/_index.md b/english/aspose.cells/paginatedsaveoptions/create_directory/_index.md
index 7dc31bb0f1..2b74b08c3e 100644
--- a/english/aspose.cells/paginatedsaveoptions/create_directory/_index.md
+++ b/english/aspose.cells/paginatedsaveoptions/create_directory/_index.md
@@ -3,7 +3,7 @@ title: create_directory property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 80
+weight: 90
url: /aspose.cells/paginatedsaveoptions/create_directory/
is_root: false
---
diff --git a/english/aspose.cells/paginatedsaveoptions/default_edit_language/_index.md b/english/aspose.cells/paginatedsaveoptions/default_edit_language/_index.md
index 0f82e68366..0cd0bafae3 100644
--- a/english/aspose.cells/paginatedsaveoptions/default_edit_language/_index.md
+++ b/english/aspose.cells/paginatedsaveoptions/default_edit_language/_index.md
@@ -3,7 +3,7 @@ title: default_edit_language property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 90
+weight: 100
url: /aspose.cells/paginatedsaveoptions/default_edit_language/
is_root: false
---
diff --git a/english/aspose.cells/paginatedsaveoptions/default_font/_index.md b/english/aspose.cells/paginatedsaveoptions/default_font/_index.md
index eadff5a65e..e06cbb35c1 100644
--- a/english/aspose.cells/paginatedsaveoptions/default_font/_index.md
+++ b/english/aspose.cells/paginatedsaveoptions/default_font/_index.md
@@ -3,7 +3,7 @@ title: default_font property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 100
+weight: 110
url: /aspose.cells/paginatedsaveoptions/default_font/
is_root: false
---
diff --git a/english/aspose.cells/paginatedsaveoptions/draw_object_event_handler/_index.md b/english/aspose.cells/paginatedsaveoptions/draw_object_event_handler/_index.md
index 4b8316d252..31a0a4e286 100644
--- a/english/aspose.cells/paginatedsaveoptions/draw_object_event_handler/_index.md
+++ b/english/aspose.cells/paginatedsaveoptions/draw_object_event_handler/_index.md
@@ -3,7 +3,7 @@ title: draw_object_event_handler property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 110
+weight: 120
url: /aspose.cells/paginatedsaveoptions/draw_object_event_handler/
is_root: false
---
diff --git a/english/aspose.cells/paginatedsaveoptions/emf_render_setting/_index.md b/english/aspose.cells/paginatedsaveoptions/emf_render_setting/_index.md
index 3845d78e4e..cec824f1d0 100644
--- a/english/aspose.cells/paginatedsaveoptions/emf_render_setting/_index.md
+++ b/english/aspose.cells/paginatedsaveoptions/emf_render_setting/_index.md
@@ -3,7 +3,7 @@ title: emf_render_setting property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 120
+weight: 130
url: /aspose.cells/paginatedsaveoptions/emf_render_setting/
is_root: false
---
diff --git a/english/aspose.cells/paginatedsaveoptions/encrypt_document_properties/_index.md b/english/aspose.cells/paginatedsaveoptions/encrypt_document_properties/_index.md
index 41834e92b3..cf81e96709 100644
--- a/english/aspose.cells/paginatedsaveoptions/encrypt_document_properties/_index.md
+++ b/english/aspose.cells/paginatedsaveoptions/encrypt_document_properties/_index.md
@@ -3,7 +3,7 @@ title: encrypt_document_properties property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 130
+weight: 140
url: /aspose.cells/paginatedsaveoptions/encrypt_document_properties/
is_root: false
---
diff --git a/english/aspose.cells/paginatedsaveoptions/gridline_type/_index.md b/english/aspose.cells/paginatedsaveoptions/gridline_type/_index.md
index 7487f9e7bc..47476fa7fa 100644
--- a/english/aspose.cells/paginatedsaveoptions/gridline_type/_index.md
+++ b/english/aspose.cells/paginatedsaveoptions/gridline_type/_index.md
@@ -3,7 +3,7 @@ title: gridline_type property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 140
+weight: 150
url: /aspose.cells/paginatedsaveoptions/gridline_type/
is_root: false
---
diff --git a/english/aspose.cells/paginatedsaveoptions/ignore_error/_index.md b/english/aspose.cells/paginatedsaveoptions/ignore_error/_index.md
index 186c0dc52e..cc44de609a 100644
--- a/english/aspose.cells/paginatedsaveoptions/ignore_error/_index.md
+++ b/english/aspose.cells/paginatedsaveoptions/ignore_error/_index.md
@@ -3,7 +3,7 @@ title: ignore_error property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 150
+weight: 160
url: /aspose.cells/paginatedsaveoptions/ignore_error/
is_root: false
---
diff --git a/english/aspose.cells/paginatedsaveoptions/is_font_substitution_char_granularity/_index.md b/english/aspose.cells/paginatedsaveoptions/is_font_substitution_char_granularity/_index.md
index 5407017a55..e84885e628 100644
--- a/english/aspose.cells/paginatedsaveoptions/is_font_substitution_char_granularity/_index.md
+++ b/english/aspose.cells/paginatedsaveoptions/is_font_substitution_char_granularity/_index.md
@@ -3,7 +3,7 @@ title: is_font_substitution_char_granularity property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 160
+weight: 170
url: /aspose.cells/paginatedsaveoptions/is_font_substitution_char_granularity/
is_root: false
---
diff --git a/english/aspose.cells/paginatedsaveoptions/merge_areas/_index.md b/english/aspose.cells/paginatedsaveoptions/merge_areas/_index.md
index b12cb0915e..84a783e19d 100644
--- a/english/aspose.cells/paginatedsaveoptions/merge_areas/_index.md
+++ b/english/aspose.cells/paginatedsaveoptions/merge_areas/_index.md
@@ -3,7 +3,7 @@ title: merge_areas property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 170
+weight: 180
url: /aspose.cells/paginatedsaveoptions/merge_areas/
is_root: false
---
diff --git a/english/aspose.cells/paginatedsaveoptions/one_page_per_sheet/_index.md b/english/aspose.cells/paginatedsaveoptions/one_page_per_sheet/_index.md
index 43fdbe38c2..d97454ffb5 100644
--- a/english/aspose.cells/paginatedsaveoptions/one_page_per_sheet/_index.md
+++ b/english/aspose.cells/paginatedsaveoptions/one_page_per_sheet/_index.md
@@ -3,7 +3,7 @@ title: one_page_per_sheet property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 180
+weight: 190
url: /aspose.cells/paginatedsaveoptions/one_page_per_sheet/
is_root: false
---
diff --git a/english/aspose.cells/paginatedsaveoptions/output_blank_page_when_nothing_to_print/_index.md b/english/aspose.cells/paginatedsaveoptions/output_blank_page_when_nothing_to_print/_index.md
index 5c6b4e777d..5702ff4e87 100644
--- a/english/aspose.cells/paginatedsaveoptions/output_blank_page_when_nothing_to_print/_index.md
+++ b/english/aspose.cells/paginatedsaveoptions/output_blank_page_when_nothing_to_print/_index.md
@@ -3,7 +3,7 @@ title: output_blank_page_when_nothing_to_print property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 190
+weight: 200
url: /aspose.cells/paginatedsaveoptions/output_blank_page_when_nothing_to_print/
is_root: false
---
diff --git a/english/aspose.cells/paginatedsaveoptions/page_count/_index.md b/english/aspose.cells/paginatedsaveoptions/page_count/_index.md
index c3534f7f8e..2b2834052d 100644
--- a/english/aspose.cells/paginatedsaveoptions/page_count/_index.md
+++ b/english/aspose.cells/paginatedsaveoptions/page_count/_index.md
@@ -3,7 +3,7 @@ title: page_count property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 200
+weight: 210
url: /aspose.cells/paginatedsaveoptions/page_count/
is_root: false
---
diff --git a/english/aspose.cells/paginatedsaveoptions/page_index/_index.md b/english/aspose.cells/paginatedsaveoptions/page_index/_index.md
index 2d99dd26ba..3f7e6e46c5 100644
--- a/english/aspose.cells/paginatedsaveoptions/page_index/_index.md
+++ b/english/aspose.cells/paginatedsaveoptions/page_index/_index.md
@@ -3,7 +3,7 @@ title: page_index property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 210
+weight: 220
url: /aspose.cells/paginatedsaveoptions/page_index/
is_root: false
---
diff --git a/english/aspose.cells/paginatedsaveoptions/page_saving_callback/_index.md b/english/aspose.cells/paginatedsaveoptions/page_saving_callback/_index.md
index fa6dabe035..38334ade2e 100644
--- a/english/aspose.cells/paginatedsaveoptions/page_saving_callback/_index.md
+++ b/english/aspose.cells/paginatedsaveoptions/page_saving_callback/_index.md
@@ -3,7 +3,7 @@ title: page_saving_callback property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 220
+weight: 230
url: /aspose.cells/paginatedsaveoptions/page_saving_callback/
is_root: false
---
diff --git a/english/aspose.cells/paginatedsaveoptions/printing_page_type/_index.md b/english/aspose.cells/paginatedsaveoptions/printing_page_type/_index.md
index 2a1f0b539d..73680df9db 100644
--- a/english/aspose.cells/paginatedsaveoptions/printing_page_type/_index.md
+++ b/english/aspose.cells/paginatedsaveoptions/printing_page_type/_index.md
@@ -3,7 +3,7 @@ title: printing_page_type property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 230
+weight: 240
url: /aspose.cells/paginatedsaveoptions/printing_page_type/
is_root: false
---
diff --git a/english/aspose.cells/paginatedsaveoptions/refresh_chart_cache/_index.md b/english/aspose.cells/paginatedsaveoptions/refresh_chart_cache/_index.md
index 861cf91653..9721f6e1fa 100644
--- a/english/aspose.cells/paginatedsaveoptions/refresh_chart_cache/_index.md
+++ b/english/aspose.cells/paginatedsaveoptions/refresh_chart_cache/_index.md
@@ -3,7 +3,7 @@ title: refresh_chart_cache property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 240
+weight: 250
url: /aspose.cells/paginatedsaveoptions/refresh_chart_cache/
is_root: false
---
diff --git a/english/aspose.cells/paginatedsaveoptions/save_format/_index.md b/english/aspose.cells/paginatedsaveoptions/save_format/_index.md
index eabd8c808f..85e7da5e17 100644
--- a/english/aspose.cells/paginatedsaveoptions/save_format/_index.md
+++ b/english/aspose.cells/paginatedsaveoptions/save_format/_index.md
@@ -3,7 +3,7 @@ title: save_format property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 250
+weight: 260
url: /aspose.cells/paginatedsaveoptions/save_format/
is_root: false
---
diff --git a/english/aspose.cells/paginatedsaveoptions/sheet_set/_index.md b/english/aspose.cells/paginatedsaveoptions/sheet_set/_index.md
index 7c8cfdcb86..57de6434ff 100644
--- a/english/aspose.cells/paginatedsaveoptions/sheet_set/_index.md
+++ b/english/aspose.cells/paginatedsaveoptions/sheet_set/_index.md
@@ -3,7 +3,7 @@ title: sheet_set property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 260
+weight: 270
url: /aspose.cells/paginatedsaveoptions/sheet_set/
is_root: false
---
diff --git a/english/aspose.cells/paginatedsaveoptions/sort_external_names/_index.md b/english/aspose.cells/paginatedsaveoptions/sort_external_names/_index.md
index 089819fbd1..f4656ef94a 100644
--- a/english/aspose.cells/paginatedsaveoptions/sort_external_names/_index.md
+++ b/english/aspose.cells/paginatedsaveoptions/sort_external_names/_index.md
@@ -3,7 +3,7 @@ title: sort_external_names property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 270
+weight: 280
url: /aspose.cells/paginatedsaveoptions/sort_external_names/
is_root: false
---
diff --git a/english/aspose.cells/paginatedsaveoptions/sort_names/_index.md b/english/aspose.cells/paginatedsaveoptions/sort_names/_index.md
index 240aac88b3..9d9bba1c9f 100644
--- a/english/aspose.cells/paginatedsaveoptions/sort_names/_index.md
+++ b/english/aspose.cells/paginatedsaveoptions/sort_names/_index.md
@@ -3,7 +3,7 @@ title: sort_names property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 280
+weight: 290
url: /aspose.cells/paginatedsaveoptions/sort_names/
is_root: false
---
diff --git a/english/aspose.cells/paginatedsaveoptions/text_cross_type/_index.md b/english/aspose.cells/paginatedsaveoptions/text_cross_type/_index.md
index 0806e9d14f..d3238674d8 100644
--- a/english/aspose.cells/paginatedsaveoptions/text_cross_type/_index.md
+++ b/english/aspose.cells/paginatedsaveoptions/text_cross_type/_index.md
@@ -3,7 +3,7 @@ title: text_cross_type property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 290
+weight: 300
url: /aspose.cells/paginatedsaveoptions/text_cross_type/
is_root: false
---
diff --git a/english/aspose.cells/paginatedsaveoptions/update_smart_art/_index.md b/english/aspose.cells/paginatedsaveoptions/update_smart_art/_index.md
index 95432f8023..5acee99300 100644
--- a/english/aspose.cells/paginatedsaveoptions/update_smart_art/_index.md
+++ b/english/aspose.cells/paginatedsaveoptions/update_smart_art/_index.md
@@ -3,7 +3,7 @@ title: update_smart_art property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 300
+weight: 310
url: /aspose.cells/paginatedsaveoptions/update_smart_art/
is_root: false
---
diff --git a/english/aspose.cells/paginatedsaveoptions/validate_merged_areas/_index.md b/english/aspose.cells/paginatedsaveoptions/validate_merged_areas/_index.md
index f54a0651ea..7ffbbaa29f 100644
--- a/english/aspose.cells/paginatedsaveoptions/validate_merged_areas/_index.md
+++ b/english/aspose.cells/paginatedsaveoptions/validate_merged_areas/_index.md
@@ -3,7 +3,7 @@ title: validate_merged_areas property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 310
+weight: 320
url: /aspose.cells/paginatedsaveoptions/validate_merged_areas/
is_root: false
---
diff --git a/english/aspose.cells/paginatedsaveoptions/warning_callback/_index.md b/english/aspose.cells/paginatedsaveoptions/warning_callback/_index.md
index 48270e9a51..9785f6b942 100644
--- a/english/aspose.cells/paginatedsaveoptions/warning_callback/_index.md
+++ b/english/aspose.cells/paginatedsaveoptions/warning_callback/_index.md
@@ -3,7 +3,7 @@ title: warning_callback property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 320
+weight: 330
url: /aspose.cells/paginatedsaveoptions/warning_callback/
is_root: false
---
diff --git a/english/aspose.cells/panecollection/_index.md b/english/aspose.cells/panecollection/_index.md
index e4e74c5d05..bba84946a3 100644
--- a/english/aspose.cells/panecollection/_index.md
+++ b/english/aspose.cells/panecollection/_index.md
@@ -3,7 +3,7 @@ title: PaneCollection class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1230
+weight: 1240
url: /aspose.cells/panecollection/
is_root: false
---
diff --git a/english/aspose.cells/panestatetype/_index.md b/english/aspose.cells/panestatetype/_index.md
index 5467d8cbda..4669aa77d2 100644
--- a/english/aspose.cells/panestatetype/_index.md
+++ b/english/aspose.cells/panestatetype/_index.md
@@ -3,7 +3,7 @@ title: PaneStateType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2510
+weight: 2530
url: /aspose.cells/panestatetype/
is_root: false
---
diff --git a/english/aspose.cells/papersizetype/_index.md b/english/aspose.cells/papersizetype/_index.md
index 4d2576e0f1..7d198f6501 100644
--- a/english/aspose.cells/papersizetype/_index.md
+++ b/english/aspose.cells/papersizetype/_index.md
@@ -3,7 +3,7 @@ title: PaperSizeType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2520
+weight: 2540
url: /aspose.cells/papersizetype/
is_root: false
---
diff --git a/english/aspose.cells/parametertype/_index.md b/english/aspose.cells/parametertype/_index.md
index 7ed8be94cd..b1b693fa31 100644
--- a/english/aspose.cells/parametertype/_index.md
+++ b/english/aspose.cells/parametertype/_index.md
@@ -3,7 +3,7 @@ title: ParameterType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2530
+weight: 2550
url: /aspose.cells/parametertype/
is_root: false
---
diff --git a/english/aspose.cells/pasteoperationtype/_index.md b/english/aspose.cells/pasteoperationtype/_index.md
index 400f16d2f8..cbfa57aa8f 100644
--- a/english/aspose.cells/pasteoperationtype/_index.md
+++ b/english/aspose.cells/pasteoperationtype/_index.md
@@ -3,7 +3,7 @@ title: PasteOperationType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2540
+weight: 2560
url: /aspose.cells/pasteoperationtype/
is_root: false
---
diff --git a/english/aspose.cells/pasteoptions/_index.md b/english/aspose.cells/pasteoptions/_index.md
index e8a9228555..2d01e3a6b2 100644
--- a/english/aspose.cells/pasteoptions/_index.md
+++ b/english/aspose.cells/pasteoptions/_index.md
@@ -3,7 +3,7 @@ title: PasteOptions class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1240
+weight: 1250
url: /aspose.cells/pasteoptions/
is_root: false
---
diff --git a/english/aspose.cells/pastetype/_index.md b/english/aspose.cells/pastetype/_index.md
index f955cd5f74..7d83a32e15 100644
--- a/english/aspose.cells/pastetype/_index.md
+++ b/english/aspose.cells/pastetype/_index.md
@@ -3,7 +3,7 @@ title: PasteType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2550
+weight: 2570
url: /aspose.cells/pastetype/
is_root: false
---
diff --git a/english/aspose.cells/pclsaveoptions/_index.md b/english/aspose.cells/pclsaveoptions/_index.md
index be35f54a26..ea8873b52b 100644
--- a/english/aspose.cells/pclsaveoptions/_index.md
+++ b/english/aspose.cells/pclsaveoptions/_index.md
@@ -3,7 +3,7 @@ title: PclSaveOptions class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1250
+weight: 1260
url: /aspose.cells/pclsaveoptions/
is_root: false
---
@@ -41,6 +41,7 @@ The PclSaveOptions type exposes the following members:
| [sort_external_names](/cells/python-net/aspose.cells/pclsaveoptions/sort_external_names) | Indicates whether sorting external defined names before saving file. |
| [refresh_chart_cache](/cells/python-net/aspose.cells/pclsaveoptions/refresh_chart_cache) | Indicates whether refreshing chart cache data |
| [warning_callback](/cells/python-net/aspose.cells/pclsaveoptions/warning_callback) | Gets or sets warning callback. |
+| [check_excel_restriction](/cells/python-net/aspose.cells/pclsaveoptions/check_excel_restriction) | Whether check restriction of excel file when user modify cells related objects.
For example, excel does not allow inputting string value longer than 32K.
When you input a value longer than 32K, it will be truncated. |
| [update_smart_art](/cells/python-net/aspose.cells/pclsaveoptions/update_smart_art) | Indicates whether updating smart art setting.
The default value is false. |
| [encrypt_document_properties](/cells/python-net/aspose.cells/pclsaveoptions/encrypt_document_properties) | Indicates whether encrypt document properties when saving as .xls file.
The default value is true. |
| [default_font](/cells/python-net/aspose.cells/pclsaveoptions/default_font) | When characters in the Excel are Unicode and not be set with correct font in cell style,
They may appear as block in pdf,image.
Set the DefaultFont such as MingLiu or MS Gothic to show these characters.
If this property is not set, Aspose.Cells will use system default font to show these unicode characters. |
diff --git a/english/aspose.cells/pclsaveoptions/check_excel_restriction/_index.md b/english/aspose.cells/pclsaveoptions/check_excel_restriction/_index.md
new file mode 100644
index 0000000000..8eb728e20a
--- /dev/null
+++ b/english/aspose.cells/pclsaveoptions/check_excel_restriction/_index.md
@@ -0,0 +1,29 @@
+---
+title: check_excel_restriction property
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 60
+url: /aspose.cells/pclsaveoptions/check_excel_restriction/
+is_root: false
+---
+
+## check_excel_restriction property
+
+
+Whether check restriction of excel file when user modify cells related objects.
+For example, excel does not allow inputting string value longer than 32K.
+When you input a value longer than 32K, it will be truncated.
+### Definition:
+```python
+@property
+def check_excel_restriction(self):
+ ...
+@check_excel_restriction.setter
+def check_excel_restriction(self, value):
+ ...
+```
+
+### See Also
+* module [`aspose.cells`](../../)
+* class [`PclSaveOptions`](/cells/python-net/aspose.cells/pclsaveoptions)
diff --git a/english/aspose.cells/pclsaveoptions/check_font_compatibility/_index.md b/english/aspose.cells/pclsaveoptions/check_font_compatibility/_index.md
index 41a1e4ebd2..a0ee7e341b 100644
--- a/english/aspose.cells/pclsaveoptions/check_font_compatibility/_index.md
+++ b/english/aspose.cells/pclsaveoptions/check_font_compatibility/_index.md
@@ -3,7 +3,7 @@ title: check_font_compatibility property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 60
+weight: 70
url: /aspose.cells/pclsaveoptions/check_font_compatibility/
is_root: false
---
diff --git a/english/aspose.cells/pclsaveoptions/check_workbook_default_font/_index.md b/english/aspose.cells/pclsaveoptions/check_workbook_default_font/_index.md
index baecdd3605..fce99d4f6f 100644
--- a/english/aspose.cells/pclsaveoptions/check_workbook_default_font/_index.md
+++ b/english/aspose.cells/pclsaveoptions/check_workbook_default_font/_index.md
@@ -3,7 +3,7 @@ title: check_workbook_default_font property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 70
+weight: 80
url: /aspose.cells/pclsaveoptions/check_workbook_default_font/
is_root: false
---
diff --git a/english/aspose.cells/pclsaveoptions/clear_data/_index.md b/english/aspose.cells/pclsaveoptions/clear_data/_index.md
index d160def928..dd8a9316cc 100644
--- a/english/aspose.cells/pclsaveoptions/clear_data/_index.md
+++ b/english/aspose.cells/pclsaveoptions/clear_data/_index.md
@@ -3,7 +3,7 @@ title: clear_data property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 80
+weight: 90
url: /aspose.cells/pclsaveoptions/clear_data/
is_root: false
---
diff --git a/english/aspose.cells/pclsaveoptions/create_directory/_index.md b/english/aspose.cells/pclsaveoptions/create_directory/_index.md
index 18e97ad355..44a1d79b26 100644
--- a/english/aspose.cells/pclsaveoptions/create_directory/_index.md
+++ b/english/aspose.cells/pclsaveoptions/create_directory/_index.md
@@ -3,7 +3,7 @@ title: create_directory property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 90
+weight: 100
url: /aspose.cells/pclsaveoptions/create_directory/
is_root: false
---
diff --git a/english/aspose.cells/pclsaveoptions/default_edit_language/_index.md b/english/aspose.cells/pclsaveoptions/default_edit_language/_index.md
index 68ae7c8a00..9e3f9f2286 100644
--- a/english/aspose.cells/pclsaveoptions/default_edit_language/_index.md
+++ b/english/aspose.cells/pclsaveoptions/default_edit_language/_index.md
@@ -3,7 +3,7 @@ title: default_edit_language property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 100
+weight: 110
url: /aspose.cells/pclsaveoptions/default_edit_language/
is_root: false
---
diff --git a/english/aspose.cells/pclsaveoptions/default_font/_index.md b/english/aspose.cells/pclsaveoptions/default_font/_index.md
index fbe0c5692c..518fd603e8 100644
--- a/english/aspose.cells/pclsaveoptions/default_font/_index.md
+++ b/english/aspose.cells/pclsaveoptions/default_font/_index.md
@@ -3,7 +3,7 @@ title: default_font property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 110
+weight: 120
url: /aspose.cells/pclsaveoptions/default_font/
is_root: false
---
diff --git a/english/aspose.cells/pclsaveoptions/draw_object_event_handler/_index.md b/english/aspose.cells/pclsaveoptions/draw_object_event_handler/_index.md
index 1446d60c7e..e02ef85540 100644
--- a/english/aspose.cells/pclsaveoptions/draw_object_event_handler/_index.md
+++ b/english/aspose.cells/pclsaveoptions/draw_object_event_handler/_index.md
@@ -3,7 +3,7 @@ title: draw_object_event_handler property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 120
+weight: 130
url: /aspose.cells/pclsaveoptions/draw_object_event_handler/
is_root: false
---
diff --git a/english/aspose.cells/pclsaveoptions/emf_render_setting/_index.md b/english/aspose.cells/pclsaveoptions/emf_render_setting/_index.md
index adafac6cd8..c6c6f49e47 100644
--- a/english/aspose.cells/pclsaveoptions/emf_render_setting/_index.md
+++ b/english/aspose.cells/pclsaveoptions/emf_render_setting/_index.md
@@ -3,7 +3,7 @@ title: emf_render_setting property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 130
+weight: 140
url: /aspose.cells/pclsaveoptions/emf_render_setting/
is_root: false
---
diff --git a/english/aspose.cells/pclsaveoptions/encrypt_document_properties/_index.md b/english/aspose.cells/pclsaveoptions/encrypt_document_properties/_index.md
index 42d2f1abd7..c0ded6759f 100644
--- a/english/aspose.cells/pclsaveoptions/encrypt_document_properties/_index.md
+++ b/english/aspose.cells/pclsaveoptions/encrypt_document_properties/_index.md
@@ -3,7 +3,7 @@ title: encrypt_document_properties property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 140
+weight: 150
url: /aspose.cells/pclsaveoptions/encrypt_document_properties/
is_root: false
---
diff --git a/english/aspose.cells/pclsaveoptions/gridline_type/_index.md b/english/aspose.cells/pclsaveoptions/gridline_type/_index.md
index 6bc04af8e7..250c34eaa0 100644
--- a/english/aspose.cells/pclsaveoptions/gridline_type/_index.md
+++ b/english/aspose.cells/pclsaveoptions/gridline_type/_index.md
@@ -3,7 +3,7 @@ title: gridline_type property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 150
+weight: 160
url: /aspose.cells/pclsaveoptions/gridline_type/
is_root: false
---
diff --git a/english/aspose.cells/pclsaveoptions/ignore_error/_index.md b/english/aspose.cells/pclsaveoptions/ignore_error/_index.md
index 03ec9052cb..a572deda21 100644
--- a/english/aspose.cells/pclsaveoptions/ignore_error/_index.md
+++ b/english/aspose.cells/pclsaveoptions/ignore_error/_index.md
@@ -3,7 +3,7 @@ title: ignore_error property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 160
+weight: 170
url: /aspose.cells/pclsaveoptions/ignore_error/
is_root: false
---
diff --git a/english/aspose.cells/pclsaveoptions/is_font_substitution_char_granularity/_index.md b/english/aspose.cells/pclsaveoptions/is_font_substitution_char_granularity/_index.md
index 54239b9a1f..a1f5ffa765 100644
--- a/english/aspose.cells/pclsaveoptions/is_font_substitution_char_granularity/_index.md
+++ b/english/aspose.cells/pclsaveoptions/is_font_substitution_char_granularity/_index.md
@@ -3,7 +3,7 @@ title: is_font_substitution_char_granularity property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 170
+weight: 180
url: /aspose.cells/pclsaveoptions/is_font_substitution_char_granularity/
is_root: false
---
diff --git a/english/aspose.cells/pclsaveoptions/merge_areas/_index.md b/english/aspose.cells/pclsaveoptions/merge_areas/_index.md
index 85e892fcb8..e4ab43ab1e 100644
--- a/english/aspose.cells/pclsaveoptions/merge_areas/_index.md
+++ b/english/aspose.cells/pclsaveoptions/merge_areas/_index.md
@@ -3,7 +3,7 @@ title: merge_areas property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 180
+weight: 190
url: /aspose.cells/pclsaveoptions/merge_areas/
is_root: false
---
diff --git a/english/aspose.cells/pclsaveoptions/one_page_per_sheet/_index.md b/english/aspose.cells/pclsaveoptions/one_page_per_sheet/_index.md
index 57829daeba..b443fe9cac 100644
--- a/english/aspose.cells/pclsaveoptions/one_page_per_sheet/_index.md
+++ b/english/aspose.cells/pclsaveoptions/one_page_per_sheet/_index.md
@@ -3,7 +3,7 @@ title: one_page_per_sheet property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 190
+weight: 200
url: /aspose.cells/pclsaveoptions/one_page_per_sheet/
is_root: false
---
diff --git a/english/aspose.cells/pclsaveoptions/output_blank_page_when_nothing_to_print/_index.md b/english/aspose.cells/pclsaveoptions/output_blank_page_when_nothing_to_print/_index.md
index 7f8b3f4b5a..d64cd9b288 100644
--- a/english/aspose.cells/pclsaveoptions/output_blank_page_when_nothing_to_print/_index.md
+++ b/english/aspose.cells/pclsaveoptions/output_blank_page_when_nothing_to_print/_index.md
@@ -3,7 +3,7 @@ title: output_blank_page_when_nothing_to_print property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 200
+weight: 210
url: /aspose.cells/pclsaveoptions/output_blank_page_when_nothing_to_print/
is_root: false
---
diff --git a/english/aspose.cells/pclsaveoptions/page_count/_index.md b/english/aspose.cells/pclsaveoptions/page_count/_index.md
index 6ad2ff3e57..56d880e0dd 100644
--- a/english/aspose.cells/pclsaveoptions/page_count/_index.md
+++ b/english/aspose.cells/pclsaveoptions/page_count/_index.md
@@ -3,7 +3,7 @@ title: page_count property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 210
+weight: 220
url: /aspose.cells/pclsaveoptions/page_count/
is_root: false
---
diff --git a/english/aspose.cells/pclsaveoptions/page_index/_index.md b/english/aspose.cells/pclsaveoptions/page_index/_index.md
index 2a03ee7c42..7868db2dc0 100644
--- a/english/aspose.cells/pclsaveoptions/page_index/_index.md
+++ b/english/aspose.cells/pclsaveoptions/page_index/_index.md
@@ -3,7 +3,7 @@ title: page_index property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 220
+weight: 230
url: /aspose.cells/pclsaveoptions/page_index/
is_root: false
---
diff --git a/english/aspose.cells/pclsaveoptions/page_saving_callback/_index.md b/english/aspose.cells/pclsaveoptions/page_saving_callback/_index.md
index 22a6df93f8..f4ce26609c 100644
--- a/english/aspose.cells/pclsaveoptions/page_saving_callback/_index.md
+++ b/english/aspose.cells/pclsaveoptions/page_saving_callback/_index.md
@@ -3,7 +3,7 @@ title: page_saving_callback property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 230
+weight: 240
url: /aspose.cells/pclsaveoptions/page_saving_callback/
is_root: false
---
diff --git a/english/aspose.cells/pclsaveoptions/printing_page_type/_index.md b/english/aspose.cells/pclsaveoptions/printing_page_type/_index.md
index a164029e44..d54c3907fb 100644
--- a/english/aspose.cells/pclsaveoptions/printing_page_type/_index.md
+++ b/english/aspose.cells/pclsaveoptions/printing_page_type/_index.md
@@ -3,7 +3,7 @@ title: printing_page_type property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 240
+weight: 250
url: /aspose.cells/pclsaveoptions/printing_page_type/
is_root: false
---
diff --git a/english/aspose.cells/pclsaveoptions/refresh_chart_cache/_index.md b/english/aspose.cells/pclsaveoptions/refresh_chart_cache/_index.md
index 55f099d3dc..466d14eeeb 100644
--- a/english/aspose.cells/pclsaveoptions/refresh_chart_cache/_index.md
+++ b/english/aspose.cells/pclsaveoptions/refresh_chart_cache/_index.md
@@ -3,7 +3,7 @@ title: refresh_chart_cache property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 250
+weight: 260
url: /aspose.cells/pclsaveoptions/refresh_chart_cache/
is_root: false
---
diff --git a/english/aspose.cells/pclsaveoptions/save_format/_index.md b/english/aspose.cells/pclsaveoptions/save_format/_index.md
index b9c50e54fc..41f782857e 100644
--- a/english/aspose.cells/pclsaveoptions/save_format/_index.md
+++ b/english/aspose.cells/pclsaveoptions/save_format/_index.md
@@ -3,7 +3,7 @@ title: save_format property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 260
+weight: 270
url: /aspose.cells/pclsaveoptions/save_format/
is_root: false
---
diff --git a/english/aspose.cells/pclsaveoptions/sheet_set/_index.md b/english/aspose.cells/pclsaveoptions/sheet_set/_index.md
index c4aea66cc2..dce88294f0 100644
--- a/english/aspose.cells/pclsaveoptions/sheet_set/_index.md
+++ b/english/aspose.cells/pclsaveoptions/sheet_set/_index.md
@@ -3,7 +3,7 @@ title: sheet_set property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 270
+weight: 280
url: /aspose.cells/pclsaveoptions/sheet_set/
is_root: false
---
diff --git a/english/aspose.cells/pclsaveoptions/sort_external_names/_index.md b/english/aspose.cells/pclsaveoptions/sort_external_names/_index.md
index 4bbd1b0dad..b49d58ad82 100644
--- a/english/aspose.cells/pclsaveoptions/sort_external_names/_index.md
+++ b/english/aspose.cells/pclsaveoptions/sort_external_names/_index.md
@@ -3,7 +3,7 @@ title: sort_external_names property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 280
+weight: 290
url: /aspose.cells/pclsaveoptions/sort_external_names/
is_root: false
---
diff --git a/english/aspose.cells/pclsaveoptions/sort_names/_index.md b/english/aspose.cells/pclsaveoptions/sort_names/_index.md
index 203f176e36..73cc31c8f0 100644
--- a/english/aspose.cells/pclsaveoptions/sort_names/_index.md
+++ b/english/aspose.cells/pclsaveoptions/sort_names/_index.md
@@ -3,7 +3,7 @@ title: sort_names property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 290
+weight: 300
url: /aspose.cells/pclsaveoptions/sort_names/
is_root: false
---
diff --git a/english/aspose.cells/pclsaveoptions/text_cross_type/_index.md b/english/aspose.cells/pclsaveoptions/text_cross_type/_index.md
index 39731dacd7..8aba333949 100644
--- a/english/aspose.cells/pclsaveoptions/text_cross_type/_index.md
+++ b/english/aspose.cells/pclsaveoptions/text_cross_type/_index.md
@@ -3,7 +3,7 @@ title: text_cross_type property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 300
+weight: 310
url: /aspose.cells/pclsaveoptions/text_cross_type/
is_root: false
---
diff --git a/english/aspose.cells/pclsaveoptions/update_smart_art/_index.md b/english/aspose.cells/pclsaveoptions/update_smart_art/_index.md
index 770e20118f..a8644084e4 100644
--- a/english/aspose.cells/pclsaveoptions/update_smart_art/_index.md
+++ b/english/aspose.cells/pclsaveoptions/update_smart_art/_index.md
@@ -3,7 +3,7 @@ title: update_smart_art property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 310
+weight: 320
url: /aspose.cells/pclsaveoptions/update_smart_art/
is_root: false
---
diff --git a/english/aspose.cells/pclsaveoptions/validate_merged_areas/_index.md b/english/aspose.cells/pclsaveoptions/validate_merged_areas/_index.md
index 3184bdfd07..0f1e6db6f6 100644
--- a/english/aspose.cells/pclsaveoptions/validate_merged_areas/_index.md
+++ b/english/aspose.cells/pclsaveoptions/validate_merged_areas/_index.md
@@ -3,7 +3,7 @@ title: validate_merged_areas property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 320
+weight: 330
url: /aspose.cells/pclsaveoptions/validate_merged_areas/
is_root: false
---
diff --git a/english/aspose.cells/pclsaveoptions/warning_callback/_index.md b/english/aspose.cells/pclsaveoptions/warning_callback/_index.md
index bc2adf6b34..a5c6ee00f7 100644
--- a/english/aspose.cells/pclsaveoptions/warning_callback/_index.md
+++ b/english/aspose.cells/pclsaveoptions/warning_callback/_index.md
@@ -3,7 +3,7 @@ title: warning_callback property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 330
+weight: 340
url: /aspose.cells/pclsaveoptions/warning_callback/
is_root: false
---
diff --git a/english/aspose.cells/pdfsaveoptions/_index.md b/english/aspose.cells/pdfsaveoptions/_index.md
index b9215bc20c..633b7d9437 100644
--- a/english/aspose.cells/pdfsaveoptions/_index.md
+++ b/english/aspose.cells/pdfsaveoptions/_index.md
@@ -3,7 +3,7 @@ title: PdfSaveOptions class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1260
+weight: 1270
url: /aspose.cells/pdfsaveoptions/
is_root: false
---
@@ -41,6 +41,7 @@ The PdfSaveOptions type exposes the following members:
| [sort_external_names](/cells/python-net/aspose.cells/pdfsaveoptions/sort_external_names) | Indicates whether sorting external defined names before saving file. |
| [refresh_chart_cache](/cells/python-net/aspose.cells/pdfsaveoptions/refresh_chart_cache) | Indicates whether refreshing chart cache data |
| [warning_callback](/cells/python-net/aspose.cells/pdfsaveoptions/warning_callback) | Gets or sets warning callback. |
+| [check_excel_restriction](/cells/python-net/aspose.cells/pdfsaveoptions/check_excel_restriction) | Whether check restriction of excel file when user modify cells related objects.
For example, excel does not allow inputting string value longer than 32K.
When you input a value longer than 32K, it will be truncated. |
| [update_smart_art](/cells/python-net/aspose.cells/pdfsaveoptions/update_smart_art) | Indicates whether updating smart art setting.
The default value is false. |
| [encrypt_document_properties](/cells/python-net/aspose.cells/pdfsaveoptions/encrypt_document_properties) | Indicates whether encrypt document properties when saving as .xls file.
The default value is true. |
| [default_font](/cells/python-net/aspose.cells/pdfsaveoptions/default_font) | When characters in the Excel are Unicode and not be set with correct font in cell style,
They may appear as block in pdf,image.
Set the DefaultFont such as MingLiu or MS Gothic to show these characters.
If this property is not set, Aspose.Cells will use system default font to show these unicode characters. |
diff --git a/english/aspose.cells/pdfsaveoptions/check_excel_restriction/_index.md b/english/aspose.cells/pdfsaveoptions/check_excel_restriction/_index.md
new file mode 100644
index 0000000000..4a1029c287
--- /dev/null
+++ b/english/aspose.cells/pdfsaveoptions/check_excel_restriction/_index.md
@@ -0,0 +1,29 @@
+---
+title: check_excel_restriction property
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 80
+url: /aspose.cells/pdfsaveoptions/check_excel_restriction/
+is_root: false
+---
+
+## check_excel_restriction property
+
+
+Whether check restriction of excel file when user modify cells related objects.
+For example, excel does not allow inputting string value longer than 32K.
+When you input a value longer than 32K, it will be truncated.
+### Definition:
+```python
+@property
+def check_excel_restriction(self):
+ ...
+@check_excel_restriction.setter
+def check_excel_restriction(self, value):
+ ...
+```
+
+### See Also
+* module [`aspose.cells`](../../)
+* class [`PdfSaveOptions`](/cells/python-net/aspose.cells/pdfsaveoptions)
diff --git a/english/aspose.cells/pdfsaveoptions/check_font_compatibility/_index.md b/english/aspose.cells/pdfsaveoptions/check_font_compatibility/_index.md
index f7e0f80f76..19f38ef73c 100644
--- a/english/aspose.cells/pdfsaveoptions/check_font_compatibility/_index.md
+++ b/english/aspose.cells/pdfsaveoptions/check_font_compatibility/_index.md
@@ -3,7 +3,7 @@ title: check_font_compatibility property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 80
+weight: 90
url: /aspose.cells/pdfsaveoptions/check_font_compatibility/
is_root: false
---
diff --git a/english/aspose.cells/pdfsaveoptions/check_workbook_default_font/_index.md b/english/aspose.cells/pdfsaveoptions/check_workbook_default_font/_index.md
index b622a2f265..e04abc7e9a 100644
--- a/english/aspose.cells/pdfsaveoptions/check_workbook_default_font/_index.md
+++ b/english/aspose.cells/pdfsaveoptions/check_workbook_default_font/_index.md
@@ -3,7 +3,7 @@ title: check_workbook_default_font property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 90
+weight: 100
url: /aspose.cells/pdfsaveoptions/check_workbook_default_font/
is_root: false
---
diff --git a/english/aspose.cells/pdfsaveoptions/clear_data/_index.md b/english/aspose.cells/pdfsaveoptions/clear_data/_index.md
index 9cb940deb2..26a6312208 100644
--- a/english/aspose.cells/pdfsaveoptions/clear_data/_index.md
+++ b/english/aspose.cells/pdfsaveoptions/clear_data/_index.md
@@ -3,7 +3,7 @@ title: clear_data property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 100
+weight: 110
url: /aspose.cells/pdfsaveoptions/clear_data/
is_root: false
---
diff --git a/english/aspose.cells/pdfsaveoptions/compliance/_index.md b/english/aspose.cells/pdfsaveoptions/compliance/_index.md
index 0009664eab..3c441aee0c 100644
--- a/english/aspose.cells/pdfsaveoptions/compliance/_index.md
+++ b/english/aspose.cells/pdfsaveoptions/compliance/_index.md
@@ -3,7 +3,7 @@ title: compliance property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 110
+weight: 120
url: /aspose.cells/pdfsaveoptions/compliance/
is_root: false
---
diff --git a/english/aspose.cells/pdfsaveoptions/create_directory/_index.md b/english/aspose.cells/pdfsaveoptions/create_directory/_index.md
index 670755db26..294a9869d3 100644
--- a/english/aspose.cells/pdfsaveoptions/create_directory/_index.md
+++ b/english/aspose.cells/pdfsaveoptions/create_directory/_index.md
@@ -3,7 +3,7 @@ title: create_directory property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 120
+weight: 130
url: /aspose.cells/pdfsaveoptions/create_directory/
is_root: false
---
diff --git a/english/aspose.cells/pdfsaveoptions/created_time/_index.md b/english/aspose.cells/pdfsaveoptions/created_time/_index.md
index 0357e0459a..e555975245 100644
--- a/english/aspose.cells/pdfsaveoptions/created_time/_index.md
+++ b/english/aspose.cells/pdfsaveoptions/created_time/_index.md
@@ -3,7 +3,7 @@ title: created_time property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 130
+weight: 140
url: /aspose.cells/pdfsaveoptions/created_time/
is_root: false
---
diff --git a/english/aspose.cells/pdfsaveoptions/custom_properties_export/_index.md b/english/aspose.cells/pdfsaveoptions/custom_properties_export/_index.md
index 59747dbbf3..891090a5b1 100644
--- a/english/aspose.cells/pdfsaveoptions/custom_properties_export/_index.md
+++ b/english/aspose.cells/pdfsaveoptions/custom_properties_export/_index.md
@@ -3,7 +3,7 @@ title: custom_properties_export property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 140
+weight: 150
url: /aspose.cells/pdfsaveoptions/custom_properties_export/
is_root: false
---
diff --git a/english/aspose.cells/pdfsaveoptions/default_edit_language/_index.md b/english/aspose.cells/pdfsaveoptions/default_edit_language/_index.md
index 23fb3fa9d2..725ef4c1ea 100644
--- a/english/aspose.cells/pdfsaveoptions/default_edit_language/_index.md
+++ b/english/aspose.cells/pdfsaveoptions/default_edit_language/_index.md
@@ -3,7 +3,7 @@ title: default_edit_language property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 150
+weight: 160
url: /aspose.cells/pdfsaveoptions/default_edit_language/
is_root: false
---
diff --git a/english/aspose.cells/pdfsaveoptions/default_font/_index.md b/english/aspose.cells/pdfsaveoptions/default_font/_index.md
index d0eecafd99..73141baf37 100644
--- a/english/aspose.cells/pdfsaveoptions/default_font/_index.md
+++ b/english/aspose.cells/pdfsaveoptions/default_font/_index.md
@@ -3,7 +3,7 @@ title: default_font property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 160
+weight: 170
url: /aspose.cells/pdfsaveoptions/default_font/
is_root: false
---
diff --git a/english/aspose.cells/pdfsaveoptions/display_doc_title/_index.md b/english/aspose.cells/pdfsaveoptions/display_doc_title/_index.md
index 5c3852f1d6..a13456db96 100644
--- a/english/aspose.cells/pdfsaveoptions/display_doc_title/_index.md
+++ b/english/aspose.cells/pdfsaveoptions/display_doc_title/_index.md
@@ -3,7 +3,7 @@ title: display_doc_title property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 170
+weight: 180
url: /aspose.cells/pdfsaveoptions/display_doc_title/
is_root: false
---
diff --git a/english/aspose.cells/pdfsaveoptions/draw_object_event_handler/_index.md b/english/aspose.cells/pdfsaveoptions/draw_object_event_handler/_index.md
index 82d53b88a9..5f34f12c6a 100644
--- a/english/aspose.cells/pdfsaveoptions/draw_object_event_handler/_index.md
+++ b/english/aspose.cells/pdfsaveoptions/draw_object_event_handler/_index.md
@@ -3,7 +3,7 @@ title: draw_object_event_handler property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 180
+weight: 190
url: /aspose.cells/pdfsaveoptions/draw_object_event_handler/
is_root: false
---
diff --git a/english/aspose.cells/pdfsaveoptions/embed_attachments/_index.md b/english/aspose.cells/pdfsaveoptions/embed_attachments/_index.md
index 7a06cf32b4..798ca16341 100644
--- a/english/aspose.cells/pdfsaveoptions/embed_attachments/_index.md
+++ b/english/aspose.cells/pdfsaveoptions/embed_attachments/_index.md
@@ -3,7 +3,7 @@ title: embed_attachments property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 190
+weight: 200
url: /aspose.cells/pdfsaveoptions/embed_attachments/
is_root: false
---
diff --git a/english/aspose.cells/pdfsaveoptions/embed_standard_windows_fonts/_index.md b/english/aspose.cells/pdfsaveoptions/embed_standard_windows_fonts/_index.md
index 12ac1cdc08..41d0b605b0 100644
--- a/english/aspose.cells/pdfsaveoptions/embed_standard_windows_fonts/_index.md
+++ b/english/aspose.cells/pdfsaveoptions/embed_standard_windows_fonts/_index.md
@@ -3,7 +3,7 @@ title: embed_standard_windows_fonts property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 200
+weight: 210
url: /aspose.cells/pdfsaveoptions/embed_standard_windows_fonts/
is_root: false
---
diff --git a/english/aspose.cells/pdfsaveoptions/emf_render_setting/_index.md b/english/aspose.cells/pdfsaveoptions/emf_render_setting/_index.md
index 8cdec158d4..748ee6477b 100644
--- a/english/aspose.cells/pdfsaveoptions/emf_render_setting/_index.md
+++ b/english/aspose.cells/pdfsaveoptions/emf_render_setting/_index.md
@@ -3,7 +3,7 @@ title: emf_render_setting property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 210
+weight: 220
url: /aspose.cells/pdfsaveoptions/emf_render_setting/
is_root: false
---
diff --git a/english/aspose.cells/pdfsaveoptions/encrypt_document_properties/_index.md b/english/aspose.cells/pdfsaveoptions/encrypt_document_properties/_index.md
index 7d435daf17..163621cdec 100644
--- a/english/aspose.cells/pdfsaveoptions/encrypt_document_properties/_index.md
+++ b/english/aspose.cells/pdfsaveoptions/encrypt_document_properties/_index.md
@@ -3,7 +3,7 @@ title: encrypt_document_properties property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 220
+weight: 230
url: /aspose.cells/pdfsaveoptions/encrypt_document_properties/
is_root: false
---
diff --git a/english/aspose.cells/pdfsaveoptions/export_document_structure/_index.md b/english/aspose.cells/pdfsaveoptions/export_document_structure/_index.md
index ca4a10d9f6..017da6099b 100644
--- a/english/aspose.cells/pdfsaveoptions/export_document_structure/_index.md
+++ b/english/aspose.cells/pdfsaveoptions/export_document_structure/_index.md
@@ -3,7 +3,7 @@ title: export_document_structure property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 230
+weight: 240
url: /aspose.cells/pdfsaveoptions/export_document_structure/
is_root: false
---
diff --git a/english/aspose.cells/pdfsaveoptions/font_encoding/_index.md b/english/aspose.cells/pdfsaveoptions/font_encoding/_index.md
index c9fed9fba3..532f32046f 100644
--- a/english/aspose.cells/pdfsaveoptions/font_encoding/_index.md
+++ b/english/aspose.cells/pdfsaveoptions/font_encoding/_index.md
@@ -3,7 +3,7 @@ title: font_encoding property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 240
+weight: 250
url: /aspose.cells/pdfsaveoptions/font_encoding/
is_root: false
---
diff --git a/english/aspose.cells/pdfsaveoptions/gridline_type/_index.md b/english/aspose.cells/pdfsaveoptions/gridline_type/_index.md
index c7207f9187..96b67eaaed 100644
--- a/english/aspose.cells/pdfsaveoptions/gridline_type/_index.md
+++ b/english/aspose.cells/pdfsaveoptions/gridline_type/_index.md
@@ -3,7 +3,7 @@ title: gridline_type property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 250
+weight: 260
url: /aspose.cells/pdfsaveoptions/gridline_type/
is_root: false
---
diff --git a/english/aspose.cells/pdfsaveoptions/ignore_error/_index.md b/english/aspose.cells/pdfsaveoptions/ignore_error/_index.md
index 34787b7fbd..912d744202 100644
--- a/english/aspose.cells/pdfsaveoptions/ignore_error/_index.md
+++ b/english/aspose.cells/pdfsaveoptions/ignore_error/_index.md
@@ -3,7 +3,7 @@ title: ignore_error property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 260
+weight: 270
url: /aspose.cells/pdfsaveoptions/ignore_error/
is_root: false
---
diff --git a/english/aspose.cells/pdfsaveoptions/image_type/_index.md b/english/aspose.cells/pdfsaveoptions/image_type/_index.md
index 4069165728..946440a2d1 100644
--- a/english/aspose.cells/pdfsaveoptions/image_type/_index.md
+++ b/english/aspose.cells/pdfsaveoptions/image_type/_index.md
@@ -3,7 +3,7 @@ title: image_type property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 270
+weight: 280
url: /aspose.cells/pdfsaveoptions/image_type/
is_root: false
---
diff --git a/english/aspose.cells/pdfsaveoptions/is_font_substitution_char_granularity/_index.md b/english/aspose.cells/pdfsaveoptions/is_font_substitution_char_granularity/_index.md
index 38eeffb737..b0f54b7f7d 100644
--- a/english/aspose.cells/pdfsaveoptions/is_font_substitution_char_granularity/_index.md
+++ b/english/aspose.cells/pdfsaveoptions/is_font_substitution_char_granularity/_index.md
@@ -3,7 +3,7 @@ title: is_font_substitution_char_granularity property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 280
+weight: 290
url: /aspose.cells/pdfsaveoptions/is_font_substitution_char_granularity/
is_root: false
---
diff --git a/english/aspose.cells/pdfsaveoptions/merge_areas/_index.md b/english/aspose.cells/pdfsaveoptions/merge_areas/_index.md
index 8861c5e9d0..5790c674b6 100644
--- a/english/aspose.cells/pdfsaveoptions/merge_areas/_index.md
+++ b/english/aspose.cells/pdfsaveoptions/merge_areas/_index.md
@@ -3,7 +3,7 @@ title: merge_areas property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 290
+weight: 300
url: /aspose.cells/pdfsaveoptions/merge_areas/
is_root: false
---
diff --git a/english/aspose.cells/pdfsaveoptions/one_page_per_sheet/_index.md b/english/aspose.cells/pdfsaveoptions/one_page_per_sheet/_index.md
index cdd67d1c60..84fdc1d3cf 100644
--- a/english/aspose.cells/pdfsaveoptions/one_page_per_sheet/_index.md
+++ b/english/aspose.cells/pdfsaveoptions/one_page_per_sheet/_index.md
@@ -3,7 +3,7 @@ title: one_page_per_sheet property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 300
+weight: 310
url: /aspose.cells/pdfsaveoptions/one_page_per_sheet/
is_root: false
---
diff --git a/english/aspose.cells/pdfsaveoptions/optimization_type/_index.md b/english/aspose.cells/pdfsaveoptions/optimization_type/_index.md
index 7d9623bcae..679059def6 100644
--- a/english/aspose.cells/pdfsaveoptions/optimization_type/_index.md
+++ b/english/aspose.cells/pdfsaveoptions/optimization_type/_index.md
@@ -3,7 +3,7 @@ title: optimization_type property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 310
+weight: 320
url: /aspose.cells/pdfsaveoptions/optimization_type/
is_root: false
---
diff --git a/english/aspose.cells/pdfsaveoptions/output_blank_page_when_nothing_to_print/_index.md b/english/aspose.cells/pdfsaveoptions/output_blank_page_when_nothing_to_print/_index.md
index 3f6df16a3a..965ab98b19 100644
--- a/english/aspose.cells/pdfsaveoptions/output_blank_page_when_nothing_to_print/_index.md
+++ b/english/aspose.cells/pdfsaveoptions/output_blank_page_when_nothing_to_print/_index.md
@@ -3,7 +3,7 @@ title: output_blank_page_when_nothing_to_print property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 320
+weight: 330
url: /aspose.cells/pdfsaveoptions/output_blank_page_when_nothing_to_print/
is_root: false
---
diff --git a/english/aspose.cells/pdfsaveoptions/page_count/_index.md b/english/aspose.cells/pdfsaveoptions/page_count/_index.md
index 5e20f2da22..a17f6e2f9b 100644
--- a/english/aspose.cells/pdfsaveoptions/page_count/_index.md
+++ b/english/aspose.cells/pdfsaveoptions/page_count/_index.md
@@ -3,7 +3,7 @@ title: page_count property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 330
+weight: 340
url: /aspose.cells/pdfsaveoptions/page_count/
is_root: false
---
diff --git a/english/aspose.cells/pdfsaveoptions/page_index/_index.md b/english/aspose.cells/pdfsaveoptions/page_index/_index.md
index 27e5f0ea75..3cb687422b 100644
--- a/english/aspose.cells/pdfsaveoptions/page_index/_index.md
+++ b/english/aspose.cells/pdfsaveoptions/page_index/_index.md
@@ -3,7 +3,7 @@ title: page_index property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 340
+weight: 350
url: /aspose.cells/pdfsaveoptions/page_index/
is_root: false
---
diff --git a/english/aspose.cells/pdfsaveoptions/page_saving_callback/_index.md b/english/aspose.cells/pdfsaveoptions/page_saving_callback/_index.md
index 36d9396475..8a2c797e37 100644
--- a/english/aspose.cells/pdfsaveoptions/page_saving_callback/_index.md
+++ b/english/aspose.cells/pdfsaveoptions/page_saving_callback/_index.md
@@ -3,7 +3,7 @@ title: page_saving_callback property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 350
+weight: 360
url: /aspose.cells/pdfsaveoptions/page_saving_callback/
is_root: false
---
diff --git a/english/aspose.cells/pdfsaveoptions/pdf_compression/_index.md b/english/aspose.cells/pdfsaveoptions/pdf_compression/_index.md
index be9d8fa74a..7964048fcb 100644
--- a/english/aspose.cells/pdfsaveoptions/pdf_compression/_index.md
+++ b/english/aspose.cells/pdfsaveoptions/pdf_compression/_index.md
@@ -3,7 +3,7 @@ title: pdf_compression property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 360
+weight: 370
url: /aspose.cells/pdfsaveoptions/pdf_compression/
is_root: false
---
diff --git a/english/aspose.cells/pdfsaveoptions/printing_page_type/_index.md b/english/aspose.cells/pdfsaveoptions/printing_page_type/_index.md
index cae01c82ac..d577df3ab6 100644
--- a/english/aspose.cells/pdfsaveoptions/printing_page_type/_index.md
+++ b/english/aspose.cells/pdfsaveoptions/printing_page_type/_index.md
@@ -3,7 +3,7 @@ title: printing_page_type property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 370
+weight: 380
url: /aspose.cells/pdfsaveoptions/printing_page_type/
is_root: false
---
diff --git a/english/aspose.cells/pdfsaveoptions/producer/_index.md b/english/aspose.cells/pdfsaveoptions/producer/_index.md
index 5bb877b5c0..df06c5e674 100644
--- a/english/aspose.cells/pdfsaveoptions/producer/_index.md
+++ b/english/aspose.cells/pdfsaveoptions/producer/_index.md
@@ -3,7 +3,7 @@ title: producer property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 380
+weight: 390
url: /aspose.cells/pdfsaveoptions/producer/
is_root: false
---
diff --git a/english/aspose.cells/pdfsaveoptions/refresh_chart_cache/_index.md b/english/aspose.cells/pdfsaveoptions/refresh_chart_cache/_index.md
index 7b0208282f..ad593885a1 100644
--- a/english/aspose.cells/pdfsaveoptions/refresh_chart_cache/_index.md
+++ b/english/aspose.cells/pdfsaveoptions/refresh_chart_cache/_index.md
@@ -3,7 +3,7 @@ title: refresh_chart_cache property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 390
+weight: 400
url: /aspose.cells/pdfsaveoptions/refresh_chart_cache/
is_root: false
---
diff --git a/english/aspose.cells/pdfsaveoptions/save_format/_index.md b/english/aspose.cells/pdfsaveoptions/save_format/_index.md
index 7c6ba17d7b..45b88d4f92 100644
--- a/english/aspose.cells/pdfsaveoptions/save_format/_index.md
+++ b/english/aspose.cells/pdfsaveoptions/save_format/_index.md
@@ -3,7 +3,7 @@ title: save_format property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 400
+weight: 410
url: /aspose.cells/pdfsaveoptions/save_format/
is_root: false
---
diff --git a/english/aspose.cells/pdfsaveoptions/security_options/_index.md b/english/aspose.cells/pdfsaveoptions/security_options/_index.md
index c9af4f86e7..906e07dce6 100644
--- a/english/aspose.cells/pdfsaveoptions/security_options/_index.md
+++ b/english/aspose.cells/pdfsaveoptions/security_options/_index.md
@@ -3,7 +3,7 @@ title: security_options property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 410
+weight: 420
url: /aspose.cells/pdfsaveoptions/security_options/
is_root: false
---
diff --git a/english/aspose.cells/pdfsaveoptions/sheet_set/_index.md b/english/aspose.cells/pdfsaveoptions/sheet_set/_index.md
index b0ecde97f3..c9046e87ae 100644
--- a/english/aspose.cells/pdfsaveoptions/sheet_set/_index.md
+++ b/english/aspose.cells/pdfsaveoptions/sheet_set/_index.md
@@ -3,7 +3,7 @@ title: sheet_set property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 420
+weight: 430
url: /aspose.cells/pdfsaveoptions/sheet_set/
is_root: false
---
diff --git a/english/aspose.cells/pdfsaveoptions/sort_external_names/_index.md b/english/aspose.cells/pdfsaveoptions/sort_external_names/_index.md
index 4353e12931..53b40e1bb9 100644
--- a/english/aspose.cells/pdfsaveoptions/sort_external_names/_index.md
+++ b/english/aspose.cells/pdfsaveoptions/sort_external_names/_index.md
@@ -3,7 +3,7 @@ title: sort_external_names property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 430
+weight: 440
url: /aspose.cells/pdfsaveoptions/sort_external_names/
is_root: false
---
diff --git a/english/aspose.cells/pdfsaveoptions/sort_names/_index.md b/english/aspose.cells/pdfsaveoptions/sort_names/_index.md
index c4f4c89fcc..a1ca1aae1b 100644
--- a/english/aspose.cells/pdfsaveoptions/sort_names/_index.md
+++ b/english/aspose.cells/pdfsaveoptions/sort_names/_index.md
@@ -3,7 +3,7 @@ title: sort_names property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 440
+weight: 450
url: /aspose.cells/pdfsaveoptions/sort_names/
is_root: false
---
diff --git a/english/aspose.cells/pdfsaveoptions/text_cross_type/_index.md b/english/aspose.cells/pdfsaveoptions/text_cross_type/_index.md
index 63eacb0235..35d0b0e6b5 100644
--- a/english/aspose.cells/pdfsaveoptions/text_cross_type/_index.md
+++ b/english/aspose.cells/pdfsaveoptions/text_cross_type/_index.md
@@ -3,7 +3,7 @@ title: text_cross_type property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 450
+weight: 460
url: /aspose.cells/pdfsaveoptions/text_cross_type/
is_root: false
---
diff --git a/english/aspose.cells/pdfsaveoptions/update_smart_art/_index.md b/english/aspose.cells/pdfsaveoptions/update_smart_art/_index.md
index 479b1f6793..32bc5dbaa6 100644
--- a/english/aspose.cells/pdfsaveoptions/update_smart_art/_index.md
+++ b/english/aspose.cells/pdfsaveoptions/update_smart_art/_index.md
@@ -3,7 +3,7 @@ title: update_smart_art property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 460
+weight: 470
url: /aspose.cells/pdfsaveoptions/update_smart_art/
is_root: false
---
diff --git a/english/aspose.cells/pdfsaveoptions/validate_merged_areas/_index.md b/english/aspose.cells/pdfsaveoptions/validate_merged_areas/_index.md
index 14aa2d759d..910fb8a19d 100644
--- a/english/aspose.cells/pdfsaveoptions/validate_merged_areas/_index.md
+++ b/english/aspose.cells/pdfsaveoptions/validate_merged_areas/_index.md
@@ -3,7 +3,7 @@ title: validate_merged_areas property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 470
+weight: 480
url: /aspose.cells/pdfsaveoptions/validate_merged_areas/
is_root: false
---
diff --git a/english/aspose.cells/pdfsaveoptions/warning_callback/_index.md b/english/aspose.cells/pdfsaveoptions/warning_callback/_index.md
index 71aab22079..e8beaac051 100644
--- a/english/aspose.cells/pdfsaveoptions/warning_callback/_index.md
+++ b/english/aspose.cells/pdfsaveoptions/warning_callback/_index.md
@@ -3,7 +3,7 @@ title: warning_callback property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 480
+weight: 490
url: /aspose.cells/pdfsaveoptions/warning_callback/
is_root: false
---
diff --git a/english/aspose.cells/pdfsaveoptions/watermark/_index.md b/english/aspose.cells/pdfsaveoptions/watermark/_index.md
index 0a67775c0e..153dc29362 100644
--- a/english/aspose.cells/pdfsaveoptions/watermark/_index.md
+++ b/english/aspose.cells/pdfsaveoptions/watermark/_index.md
@@ -3,7 +3,7 @@ title: watermark property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 490
+weight: 500
url: /aspose.cells/pdfsaveoptions/watermark/
is_root: false
---
diff --git a/english/aspose.cells/pptxsaveoptions/_index.md b/english/aspose.cells/pptxsaveoptions/_index.md
index f0a165cc61..4216462ef3 100644
--- a/english/aspose.cells/pptxsaveoptions/_index.md
+++ b/english/aspose.cells/pptxsaveoptions/_index.md
@@ -3,7 +3,7 @@ title: PptxSaveOptions class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1270
+weight: 1280
url: /aspose.cells/pptxsaveoptions/
is_root: false
---
@@ -42,6 +42,7 @@ The PptxSaveOptions type exposes the following members:
| [sort_external_names](/cells/python-net/aspose.cells/pptxsaveoptions/sort_external_names) | Indicates whether sorting external defined names before saving file. |
| [refresh_chart_cache](/cells/python-net/aspose.cells/pptxsaveoptions/refresh_chart_cache) | Indicates whether refreshing chart cache data |
| [warning_callback](/cells/python-net/aspose.cells/pptxsaveoptions/warning_callback) | Gets or sets warning callback. |
+| [check_excel_restriction](/cells/python-net/aspose.cells/pptxsaveoptions/check_excel_restriction) | Whether check restriction of excel file when user modify cells related objects.
For example, excel does not allow inputting string value longer than 32K.
When you input a value longer than 32K, it will be truncated. |
| [update_smart_art](/cells/python-net/aspose.cells/pptxsaveoptions/update_smart_art) | Indicates whether updating smart art setting.
The default value is false. |
| [encrypt_document_properties](/cells/python-net/aspose.cells/pptxsaveoptions/encrypt_document_properties) | Indicates whether encrypt document properties when saving as .xls file.
The default value is true. |
| [default_font](/cells/python-net/aspose.cells/pptxsaveoptions/default_font) | When characters in the Excel are Unicode and not be set with correct font in cell style,
They may appear as block in pdf,image.
Set the DefaultFont such as MingLiu or MS Gothic to show these characters.
If this property is not set, Aspose.Cells will use system default font to show these unicode characters. |
diff --git a/english/aspose.cells/pptxsaveoptions/check_excel_restriction/_index.md b/english/aspose.cells/pptxsaveoptions/check_excel_restriction/_index.md
new file mode 100644
index 0000000000..7d83d4e9b1
--- /dev/null
+++ b/english/aspose.cells/pptxsaveoptions/check_excel_restriction/_index.md
@@ -0,0 +1,29 @@
+---
+title: check_excel_restriction property
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 60
+url: /aspose.cells/pptxsaveoptions/check_excel_restriction/
+is_root: false
+---
+
+## check_excel_restriction property
+
+
+Whether check restriction of excel file when user modify cells related objects.
+For example, excel does not allow inputting string value longer than 32K.
+When you input a value longer than 32K, it will be truncated.
+### Definition:
+```python
+@property
+def check_excel_restriction(self):
+ ...
+@check_excel_restriction.setter
+def check_excel_restriction(self, value):
+ ...
+```
+
+### See Also
+* module [`aspose.cells`](../../)
+* class [`PptxSaveOptions`](/cells/python-net/aspose.cells/pptxsaveoptions)
diff --git a/english/aspose.cells/pptxsaveoptions/check_font_compatibility/_index.md b/english/aspose.cells/pptxsaveoptions/check_font_compatibility/_index.md
index 82a4f0275a..cc68147e4f 100644
--- a/english/aspose.cells/pptxsaveoptions/check_font_compatibility/_index.md
+++ b/english/aspose.cells/pptxsaveoptions/check_font_compatibility/_index.md
@@ -3,7 +3,7 @@ title: check_font_compatibility property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 60
+weight: 70
url: /aspose.cells/pptxsaveoptions/check_font_compatibility/
is_root: false
---
diff --git a/english/aspose.cells/pptxsaveoptions/check_workbook_default_font/_index.md b/english/aspose.cells/pptxsaveoptions/check_workbook_default_font/_index.md
index 8a06d69e13..54d984e5ad 100644
--- a/english/aspose.cells/pptxsaveoptions/check_workbook_default_font/_index.md
+++ b/english/aspose.cells/pptxsaveoptions/check_workbook_default_font/_index.md
@@ -3,7 +3,7 @@ title: check_workbook_default_font property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 70
+weight: 80
url: /aspose.cells/pptxsaveoptions/check_workbook_default_font/
is_root: false
---
diff --git a/english/aspose.cells/pptxsaveoptions/clear_data/_index.md b/english/aspose.cells/pptxsaveoptions/clear_data/_index.md
index d60f8dc6a7..4801a61666 100644
--- a/english/aspose.cells/pptxsaveoptions/clear_data/_index.md
+++ b/english/aspose.cells/pptxsaveoptions/clear_data/_index.md
@@ -3,7 +3,7 @@ title: clear_data property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 80
+weight: 90
url: /aspose.cells/pptxsaveoptions/clear_data/
is_root: false
---
diff --git a/english/aspose.cells/pptxsaveoptions/create_directory/_index.md b/english/aspose.cells/pptxsaveoptions/create_directory/_index.md
index 21ff4441ca..4bc66222d7 100644
--- a/english/aspose.cells/pptxsaveoptions/create_directory/_index.md
+++ b/english/aspose.cells/pptxsaveoptions/create_directory/_index.md
@@ -3,7 +3,7 @@ title: create_directory property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 90
+weight: 100
url: /aspose.cells/pptxsaveoptions/create_directory/
is_root: false
---
diff --git a/english/aspose.cells/pptxsaveoptions/default_edit_language/_index.md b/english/aspose.cells/pptxsaveoptions/default_edit_language/_index.md
index ca65877687..3230efc1a1 100644
--- a/english/aspose.cells/pptxsaveoptions/default_edit_language/_index.md
+++ b/english/aspose.cells/pptxsaveoptions/default_edit_language/_index.md
@@ -3,7 +3,7 @@ title: default_edit_language property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 100
+weight: 110
url: /aspose.cells/pptxsaveoptions/default_edit_language/
is_root: false
---
diff --git a/english/aspose.cells/pptxsaveoptions/default_font/_index.md b/english/aspose.cells/pptxsaveoptions/default_font/_index.md
index c1ce6c68a3..71bfb303b0 100644
--- a/english/aspose.cells/pptxsaveoptions/default_font/_index.md
+++ b/english/aspose.cells/pptxsaveoptions/default_font/_index.md
@@ -3,7 +3,7 @@ title: default_font property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 110
+weight: 120
url: /aspose.cells/pptxsaveoptions/default_font/
is_root: false
---
diff --git a/english/aspose.cells/pptxsaveoptions/draw_object_event_handler/_index.md b/english/aspose.cells/pptxsaveoptions/draw_object_event_handler/_index.md
index 260212763d..fe3b2b0109 100644
--- a/english/aspose.cells/pptxsaveoptions/draw_object_event_handler/_index.md
+++ b/english/aspose.cells/pptxsaveoptions/draw_object_event_handler/_index.md
@@ -3,7 +3,7 @@ title: draw_object_event_handler property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 120
+weight: 130
url: /aspose.cells/pptxsaveoptions/draw_object_event_handler/
is_root: false
---
diff --git a/english/aspose.cells/pptxsaveoptions/emf_render_setting/_index.md b/english/aspose.cells/pptxsaveoptions/emf_render_setting/_index.md
index 14d9d6a66f..af5828952f 100644
--- a/english/aspose.cells/pptxsaveoptions/emf_render_setting/_index.md
+++ b/english/aspose.cells/pptxsaveoptions/emf_render_setting/_index.md
@@ -3,7 +3,7 @@ title: emf_render_setting property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 130
+weight: 140
url: /aspose.cells/pptxsaveoptions/emf_render_setting/
is_root: false
---
diff --git a/english/aspose.cells/pptxsaveoptions/encrypt_document_properties/_index.md b/english/aspose.cells/pptxsaveoptions/encrypt_document_properties/_index.md
index c9308f2b85..a711d90c9b 100644
--- a/english/aspose.cells/pptxsaveoptions/encrypt_document_properties/_index.md
+++ b/english/aspose.cells/pptxsaveoptions/encrypt_document_properties/_index.md
@@ -3,7 +3,7 @@ title: encrypt_document_properties property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 140
+weight: 150
url: /aspose.cells/pptxsaveoptions/encrypt_document_properties/
is_root: false
---
diff --git a/english/aspose.cells/pptxsaveoptions/export_view_type/_index.md b/english/aspose.cells/pptxsaveoptions/export_view_type/_index.md
index d18816445f..d1335b2564 100644
--- a/english/aspose.cells/pptxsaveoptions/export_view_type/_index.md
+++ b/english/aspose.cells/pptxsaveoptions/export_view_type/_index.md
@@ -3,7 +3,7 @@ title: export_view_type property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 150
+weight: 160
url: /aspose.cells/pptxsaveoptions/export_view_type/
is_root: false
---
diff --git a/english/aspose.cells/pptxsaveoptions/gridline_type/_index.md b/english/aspose.cells/pptxsaveoptions/gridline_type/_index.md
index 16e50dcc39..9201203384 100644
--- a/english/aspose.cells/pptxsaveoptions/gridline_type/_index.md
+++ b/english/aspose.cells/pptxsaveoptions/gridline_type/_index.md
@@ -3,7 +3,7 @@ title: gridline_type property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 160
+weight: 170
url: /aspose.cells/pptxsaveoptions/gridline_type/
is_root: false
---
diff --git a/english/aspose.cells/pptxsaveoptions/ignore_error/_index.md b/english/aspose.cells/pptxsaveoptions/ignore_error/_index.md
index ddb245c9c3..c251092dad 100644
--- a/english/aspose.cells/pptxsaveoptions/ignore_error/_index.md
+++ b/english/aspose.cells/pptxsaveoptions/ignore_error/_index.md
@@ -3,7 +3,7 @@ title: ignore_error property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 170
+weight: 180
url: /aspose.cells/pptxsaveoptions/ignore_error/
is_root: false
---
diff --git a/english/aspose.cells/pptxsaveoptions/ignore_hidden_rows/_index.md b/english/aspose.cells/pptxsaveoptions/ignore_hidden_rows/_index.md
index be6de88ad5..0712c55f67 100644
--- a/english/aspose.cells/pptxsaveoptions/ignore_hidden_rows/_index.md
+++ b/english/aspose.cells/pptxsaveoptions/ignore_hidden_rows/_index.md
@@ -3,7 +3,7 @@ title: ignore_hidden_rows property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 180
+weight: 190
url: /aspose.cells/pptxsaveoptions/ignore_hidden_rows/
is_root: false
---
diff --git a/english/aspose.cells/pptxsaveoptions/is_font_substitution_char_granularity/_index.md b/english/aspose.cells/pptxsaveoptions/is_font_substitution_char_granularity/_index.md
index 77a46fe909..5440515533 100644
--- a/english/aspose.cells/pptxsaveoptions/is_font_substitution_char_granularity/_index.md
+++ b/english/aspose.cells/pptxsaveoptions/is_font_substitution_char_granularity/_index.md
@@ -3,7 +3,7 @@ title: is_font_substitution_char_granularity property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 190
+weight: 200
url: /aspose.cells/pptxsaveoptions/is_font_substitution_char_granularity/
is_root: false
---
diff --git a/english/aspose.cells/pptxsaveoptions/merge_areas/_index.md b/english/aspose.cells/pptxsaveoptions/merge_areas/_index.md
index eeb7e4ea6e..501dc15c8f 100644
--- a/english/aspose.cells/pptxsaveoptions/merge_areas/_index.md
+++ b/english/aspose.cells/pptxsaveoptions/merge_areas/_index.md
@@ -3,7 +3,7 @@ title: merge_areas property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 200
+weight: 210
url: /aspose.cells/pptxsaveoptions/merge_areas/
is_root: false
---
diff --git a/english/aspose.cells/pptxsaveoptions/one_page_per_sheet/_index.md b/english/aspose.cells/pptxsaveoptions/one_page_per_sheet/_index.md
index a4ab92df39..f22d55775d 100644
--- a/english/aspose.cells/pptxsaveoptions/one_page_per_sheet/_index.md
+++ b/english/aspose.cells/pptxsaveoptions/one_page_per_sheet/_index.md
@@ -3,7 +3,7 @@ title: one_page_per_sheet property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 210
+weight: 220
url: /aspose.cells/pptxsaveoptions/one_page_per_sheet/
is_root: false
---
diff --git a/english/aspose.cells/pptxsaveoptions/output_blank_page_when_nothing_to_print/_index.md b/english/aspose.cells/pptxsaveoptions/output_blank_page_when_nothing_to_print/_index.md
index 4256c33640..34a273c66e 100644
--- a/english/aspose.cells/pptxsaveoptions/output_blank_page_when_nothing_to_print/_index.md
+++ b/english/aspose.cells/pptxsaveoptions/output_blank_page_when_nothing_to_print/_index.md
@@ -3,7 +3,7 @@ title: output_blank_page_when_nothing_to_print property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 220
+weight: 230
url: /aspose.cells/pptxsaveoptions/output_blank_page_when_nothing_to_print/
is_root: false
---
diff --git a/english/aspose.cells/pptxsaveoptions/page_count/_index.md b/english/aspose.cells/pptxsaveoptions/page_count/_index.md
index 536bf04b04..b22b50b8f3 100644
--- a/english/aspose.cells/pptxsaveoptions/page_count/_index.md
+++ b/english/aspose.cells/pptxsaveoptions/page_count/_index.md
@@ -3,7 +3,7 @@ title: page_count property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 230
+weight: 240
url: /aspose.cells/pptxsaveoptions/page_count/
is_root: false
---
diff --git a/english/aspose.cells/pptxsaveoptions/page_index/_index.md b/english/aspose.cells/pptxsaveoptions/page_index/_index.md
index bfe873149f..598f192329 100644
--- a/english/aspose.cells/pptxsaveoptions/page_index/_index.md
+++ b/english/aspose.cells/pptxsaveoptions/page_index/_index.md
@@ -3,7 +3,7 @@ title: page_index property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 240
+weight: 250
url: /aspose.cells/pptxsaveoptions/page_index/
is_root: false
---
diff --git a/english/aspose.cells/pptxsaveoptions/page_saving_callback/_index.md b/english/aspose.cells/pptxsaveoptions/page_saving_callback/_index.md
index d539edfada..94764675bc 100644
--- a/english/aspose.cells/pptxsaveoptions/page_saving_callback/_index.md
+++ b/english/aspose.cells/pptxsaveoptions/page_saving_callback/_index.md
@@ -3,7 +3,7 @@ title: page_saving_callback property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 250
+weight: 260
url: /aspose.cells/pptxsaveoptions/page_saving_callback/
is_root: false
---
diff --git a/english/aspose.cells/pptxsaveoptions/printing_page_type/_index.md b/english/aspose.cells/pptxsaveoptions/printing_page_type/_index.md
index 1f95472891..7cf568aeeb 100644
--- a/english/aspose.cells/pptxsaveoptions/printing_page_type/_index.md
+++ b/english/aspose.cells/pptxsaveoptions/printing_page_type/_index.md
@@ -3,7 +3,7 @@ title: printing_page_type property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 260
+weight: 270
url: /aspose.cells/pptxsaveoptions/printing_page_type/
is_root: false
---
diff --git a/english/aspose.cells/pptxsaveoptions/refresh_chart_cache/_index.md b/english/aspose.cells/pptxsaveoptions/refresh_chart_cache/_index.md
index 7eabf0a0fe..c76bac38c0 100644
--- a/english/aspose.cells/pptxsaveoptions/refresh_chart_cache/_index.md
+++ b/english/aspose.cells/pptxsaveoptions/refresh_chart_cache/_index.md
@@ -3,7 +3,7 @@ title: refresh_chart_cache property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 270
+weight: 280
url: /aspose.cells/pptxsaveoptions/refresh_chart_cache/
is_root: false
---
diff --git a/english/aspose.cells/pptxsaveoptions/save_format/_index.md b/english/aspose.cells/pptxsaveoptions/save_format/_index.md
index 3ad411510b..0d6b1c4bef 100644
--- a/english/aspose.cells/pptxsaveoptions/save_format/_index.md
+++ b/english/aspose.cells/pptxsaveoptions/save_format/_index.md
@@ -3,7 +3,7 @@ title: save_format property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 280
+weight: 290
url: /aspose.cells/pptxsaveoptions/save_format/
is_root: false
---
diff --git a/english/aspose.cells/pptxsaveoptions/sheet_set/_index.md b/english/aspose.cells/pptxsaveoptions/sheet_set/_index.md
index 22b6617179..539e907c15 100644
--- a/english/aspose.cells/pptxsaveoptions/sheet_set/_index.md
+++ b/english/aspose.cells/pptxsaveoptions/sheet_set/_index.md
@@ -3,7 +3,7 @@ title: sheet_set property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 290
+weight: 300
url: /aspose.cells/pptxsaveoptions/sheet_set/
is_root: false
---
diff --git a/english/aspose.cells/pptxsaveoptions/sort_external_names/_index.md b/english/aspose.cells/pptxsaveoptions/sort_external_names/_index.md
index 86b28df7ca..60da262abe 100644
--- a/english/aspose.cells/pptxsaveoptions/sort_external_names/_index.md
+++ b/english/aspose.cells/pptxsaveoptions/sort_external_names/_index.md
@@ -3,7 +3,7 @@ title: sort_external_names property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 300
+weight: 310
url: /aspose.cells/pptxsaveoptions/sort_external_names/
is_root: false
---
diff --git a/english/aspose.cells/pptxsaveoptions/sort_names/_index.md b/english/aspose.cells/pptxsaveoptions/sort_names/_index.md
index 9bbbdb0800..b1b42e7e06 100644
--- a/english/aspose.cells/pptxsaveoptions/sort_names/_index.md
+++ b/english/aspose.cells/pptxsaveoptions/sort_names/_index.md
@@ -3,7 +3,7 @@ title: sort_names property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 310
+weight: 320
url: /aspose.cells/pptxsaveoptions/sort_names/
is_root: false
---
diff --git a/english/aspose.cells/pptxsaveoptions/text_cross_type/_index.md b/english/aspose.cells/pptxsaveoptions/text_cross_type/_index.md
index 1d5f031c0b..adf2b72ada 100644
--- a/english/aspose.cells/pptxsaveoptions/text_cross_type/_index.md
+++ b/english/aspose.cells/pptxsaveoptions/text_cross_type/_index.md
@@ -3,7 +3,7 @@ title: text_cross_type property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 320
+weight: 330
url: /aspose.cells/pptxsaveoptions/text_cross_type/
is_root: false
---
diff --git a/english/aspose.cells/pptxsaveoptions/update_smart_art/_index.md b/english/aspose.cells/pptxsaveoptions/update_smart_art/_index.md
index edb6a0bfe7..4eb4770b3c 100644
--- a/english/aspose.cells/pptxsaveoptions/update_smart_art/_index.md
+++ b/english/aspose.cells/pptxsaveoptions/update_smart_art/_index.md
@@ -3,7 +3,7 @@ title: update_smart_art property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 330
+weight: 340
url: /aspose.cells/pptxsaveoptions/update_smart_art/
is_root: false
---
diff --git a/english/aspose.cells/pptxsaveoptions/validate_merged_areas/_index.md b/english/aspose.cells/pptxsaveoptions/validate_merged_areas/_index.md
index 75382284dc..e63eae2e41 100644
--- a/english/aspose.cells/pptxsaveoptions/validate_merged_areas/_index.md
+++ b/english/aspose.cells/pptxsaveoptions/validate_merged_areas/_index.md
@@ -3,7 +3,7 @@ title: validate_merged_areas property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 340
+weight: 350
url: /aspose.cells/pptxsaveoptions/validate_merged_areas/
is_root: false
---
diff --git a/english/aspose.cells/pptxsaveoptions/warning_callback/_index.md b/english/aspose.cells/pptxsaveoptions/warning_callback/_index.md
index 35ca0f895d..65beb74e23 100644
--- a/english/aspose.cells/pptxsaveoptions/warning_callback/_index.md
+++ b/english/aspose.cells/pptxsaveoptions/warning_callback/_index.md
@@ -3,7 +3,7 @@ title: warning_callback property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 350
+weight: 360
url: /aspose.cells/pptxsaveoptions/warning_callback/
is_root: false
---
diff --git a/english/aspose.cells/printcommentstype/_index.md b/english/aspose.cells/printcommentstype/_index.md
index 1e217554f5..77af381ea9 100644
--- a/english/aspose.cells/printcommentstype/_index.md
+++ b/english/aspose.cells/printcommentstype/_index.md
@@ -3,7 +3,7 @@ title: PrintCommentsType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2560
+weight: 2580
url: /aspose.cells/printcommentstype/
is_root: false
---
diff --git a/english/aspose.cells/printerrorstype/_index.md b/english/aspose.cells/printerrorstype/_index.md
index f6888da32f..26167e5ae1 100644
--- a/english/aspose.cells/printerrorstype/_index.md
+++ b/english/aspose.cells/printerrorstype/_index.md
@@ -3,7 +3,7 @@ title: PrintErrorsType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2570
+weight: 2590
url: /aspose.cells/printerrorstype/
is_root: false
---
diff --git a/english/aspose.cells/printingpagetype/_index.md b/english/aspose.cells/printingpagetype/_index.md
index 0d3dffed4f..75f151d7b9 100644
--- a/english/aspose.cells/printingpagetype/_index.md
+++ b/english/aspose.cells/printingpagetype/_index.md
@@ -3,7 +3,7 @@ title: PrintingPageType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2600
+weight: 2620
url: /aspose.cells/printingpagetype/
is_root: false
---
diff --git a/english/aspose.cells/printordertype/_index.md b/english/aspose.cells/printordertype/_index.md
index 1c49da4aeb..30da287985 100644
--- a/english/aspose.cells/printordertype/_index.md
+++ b/english/aspose.cells/printordertype/_index.md
@@ -3,7 +3,7 @@ title: PrintOrderType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2580
+weight: 2600
url: /aspose.cells/printordertype/
is_root: false
---
diff --git a/english/aspose.cells/printsizetype/_index.md b/english/aspose.cells/printsizetype/_index.md
index 4f9c6dc184..ec0aa2ac76 100644
--- a/english/aspose.cells/printsizetype/_index.md
+++ b/english/aspose.cells/printsizetype/_index.md
@@ -3,7 +3,7 @@ title: PrintSizeType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2590
+weight: 2610
url: /aspose.cells/printsizetype/
is_root: false
---
diff --git a/english/aspose.cells/protectedrange/_index.md b/english/aspose.cells/protectedrange/_index.md
index f417f48fd1..34c90bbd4c 100644
--- a/english/aspose.cells/protectedrange/_index.md
+++ b/english/aspose.cells/protectedrange/_index.md
@@ -3,7 +3,7 @@ title: ProtectedRange class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1280
+weight: 1290
url: /aspose.cells/protectedrange/
is_root: false
---
diff --git a/english/aspose.cells/protectedrangecollection/_index.md b/english/aspose.cells/protectedrangecollection/_index.md
index 1d31237203..feee8868d0 100644
--- a/english/aspose.cells/protectedrangecollection/_index.md
+++ b/english/aspose.cells/protectedrangecollection/_index.md
@@ -3,7 +3,7 @@ title: ProtectedRangeCollection class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1290
+weight: 1300
url: /aspose.cells/protectedrangecollection/
is_root: false
---
diff --git a/english/aspose.cells/protection/_index.md b/english/aspose.cells/protection/_index.md
index cee8aa0ba3..a4853561dc 100644
--- a/english/aspose.cells/protection/_index.md
+++ b/english/aspose.cells/protection/_index.md
@@ -3,7 +3,7 @@ title: Protection class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1300
+weight: 1310
url: /aspose.cells/protection/
is_root: false
---
diff --git a/english/aspose.cells/protectiontype/_index.md b/english/aspose.cells/protectiontype/_index.md
index 6baadd83be..5b9a2ab942 100644
--- a/english/aspose.cells/protectiontype/_index.md
+++ b/english/aspose.cells/protectiontype/_index.md
@@ -3,7 +3,7 @@ title: ProtectionType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2610
+weight: 2630
url: /aspose.cells/protectiontype/
is_root: false
---
diff --git a/english/aspose.cells/querytable/_index.md b/english/aspose.cells/querytable/_index.md
index ede41c7430..0429746cfd 100644
--- a/english/aspose.cells/querytable/_index.md
+++ b/english/aspose.cells/querytable/_index.md
@@ -3,7 +3,7 @@ title: QueryTable class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1310
+weight: 1320
url: /aspose.cells/querytable/
is_root: false
---
diff --git a/english/aspose.cells/querytablecollection/_index.md b/english/aspose.cells/querytablecollection/_index.md
index 09a5c52f9d..2b7a2b5e5d 100644
--- a/english/aspose.cells/querytablecollection/_index.md
+++ b/english/aspose.cells/querytablecollection/_index.md
@@ -3,7 +3,7 @@ title: QueryTableCollection class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1320
+weight: 1330
url: /aspose.cells/querytablecollection/
is_root: false
---
diff --git a/english/aspose.cells/range/_index.md b/english/aspose.cells/range/_index.md
index e55c12d85d..ede5ae25b5 100644
--- a/english/aspose.cells/range/_index.md
+++ b/english/aspose.cells/range/_index.md
@@ -3,7 +3,7 @@ title: Range class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1330
+weight: 1340
url: /aspose.cells/range/
is_root: false
---
diff --git a/english/aspose.cells/rangecollection/_index.md b/english/aspose.cells/rangecollection/_index.md
index 92a141eb62..f40ce3e7d3 100644
--- a/english/aspose.cells/rangecollection/_index.md
+++ b/english/aspose.cells/rangecollection/_index.md
@@ -3,7 +3,7 @@ title: RangeCollection class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1340
+weight: 1350
url: /aspose.cells/rangecollection/
is_root: false
---
diff --git a/english/aspose.cells/referredarea/_index.md b/english/aspose.cells/referredarea/_index.md
index db776b4cc7..57d9d9ffd2 100644
--- a/english/aspose.cells/referredarea/_index.md
+++ b/english/aspose.cells/referredarea/_index.md
@@ -3,7 +3,7 @@ title: ReferredArea class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1350
+weight: 1360
url: /aspose.cells/referredarea/
is_root: false
---
diff --git a/english/aspose.cells/referredareacollection/_index.md b/english/aspose.cells/referredareacollection/_index.md
index 00f81743a5..ad034b0c21 100644
--- a/english/aspose.cells/referredareacollection/_index.md
+++ b/english/aspose.cells/referredareacollection/_index.md
@@ -3,7 +3,7 @@ title: ReferredAreaCollection class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1360
+weight: 1370
url: /aspose.cells/referredareacollection/
is_root: false
---
diff --git a/english/aspose.cells/renamestrategy/_index.md b/english/aspose.cells/renamestrategy/_index.md
index dce7a37526..1f6f0fd488 100644
--- a/english/aspose.cells/renamestrategy/_index.md
+++ b/english/aspose.cells/renamestrategy/_index.md
@@ -3,7 +3,7 @@ title: RenameStrategy enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2620
+weight: 2640
url: /aspose.cells/renamestrategy/
is_root: false
---
diff --git a/english/aspose.cells/replaceoptions/_index.md b/english/aspose.cells/replaceoptions/_index.md
index 96b6805b24..6e48638ef7 100644
--- a/english/aspose.cells/replaceoptions/_index.md
+++ b/english/aspose.cells/replaceoptions/_index.md
@@ -3,7 +3,7 @@ title: ReplaceOptions class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1370
+weight: 1380
url: /aspose.cells/replaceoptions/
is_root: false
---
@@ -29,6 +29,7 @@ The ReplaceOptions type exposes the following members:
| [match_entire_cell_contents](/cells/python-net/aspose.cells/replaceoptions/match_entire_cell_contents) | Indicates whether to match entire cells contents |
| [regex_key](/cells/python-net/aspose.cells/replaceoptions/regex_key) | Indicates whether the searched key is regex. If true then the searched key will be taken as regex. |
| [font_settings](/cells/python-net/aspose.cells/replaceoptions/font_settings) | The rich formatted settings for the replaced text. |
+| [style_flags](/cells/python-net/aspose.cells/replaceoptions/style_flags) | Gets and sets flags of applying font settings. |
diff --git a/english/aspose.cells/replaceoptions/style_flags/_index.md b/english/aspose.cells/replaceoptions/style_flags/_index.md
new file mode 100644
index 0000000000..67ade2035a
--- /dev/null
+++ b/english/aspose.cells/replaceoptions/style_flags/_index.md
@@ -0,0 +1,27 @@
+---
+title: style_flags property
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 70
+url: /aspose.cells/replaceoptions/style_flags/
+is_root: false
+---
+
+## style_flags property
+
+
+Gets and sets flags of applying font settings.
+### Definition:
+```python
+@property
+def style_flags(self):
+ ...
+@style_flags.setter
+def style_flags(self, value):
+ ...
+```
+
+### See Also
+* module [`aspose.cells`](../../)
+* class [`ReplaceOptions`](/cells/python-net/aspose.cells/replaceoptions)
diff --git a/english/aspose.cells/resourceloadingtype/_index.md b/english/aspose.cells/resourceloadingtype/_index.md
index 593a31f729..c5af232fd8 100644
--- a/english/aspose.cells/resourceloadingtype/_index.md
+++ b/english/aspose.cells/resourceloadingtype/_index.md
@@ -3,7 +3,7 @@ title: ResourceLoadingType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2630
+weight: 2650
url: /aspose.cells/resourceloadingtype/
is_root: false
---
diff --git a/english/aspose.cells/row/_index.md b/english/aspose.cells/row/_index.md
index de41e7bc92..5adf2bc9b7 100644
--- a/english/aspose.cells/row/_index.md
+++ b/english/aspose.cells/row/_index.md
@@ -3,7 +3,7 @@ title: Row class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1380
+weight: 1390
url: /aspose.cells/row/
is_root: false
---
diff --git a/english/aspose.cells/rowcollection/_index.md b/english/aspose.cells/rowcollection/_index.md
index 605780e7f7..759176c837 100644
--- a/english/aspose.cells/rowcollection/_index.md
+++ b/english/aspose.cells/rowcollection/_index.md
@@ -3,7 +3,7 @@ title: RowCollection class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1390
+weight: 1400
url: /aspose.cells/rowcollection/
is_root: false
---
diff --git a/english/aspose.cells/saveformat/_index.md b/english/aspose.cells/saveformat/_index.md
index ba3422a56e..a7e87cce06 100644
--- a/english/aspose.cells/saveformat/_index.md
+++ b/english/aspose.cells/saveformat/_index.md
@@ -3,7 +3,7 @@ title: SaveFormat enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2640
+weight: 2660
url: /aspose.cells/saveformat/
is_root: false
---
diff --git a/english/aspose.cells/saveoptions/_index.md b/english/aspose.cells/saveoptions/_index.md
index f15d26c96b..e3149bfc5a 100644
--- a/english/aspose.cells/saveoptions/_index.md
+++ b/english/aspose.cells/saveoptions/_index.md
@@ -3,7 +3,7 @@ title: SaveOptions class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1400
+weight: 1410
url: /aspose.cells/saveoptions/
is_root: false
---
@@ -29,6 +29,7 @@ The SaveOptions type exposes the following members:
| [sort_external_names](/cells/python-net/aspose.cells/saveoptions/sort_external_names) | Indicates whether sorting external defined names before saving file. |
| [refresh_chart_cache](/cells/python-net/aspose.cells/saveoptions/refresh_chart_cache) | Indicates whether refreshing chart cache data |
| [warning_callback](/cells/python-net/aspose.cells/saveoptions/warning_callback) | Gets or sets warning callback. |
+| [check_excel_restriction](/cells/python-net/aspose.cells/saveoptions/check_excel_restriction) | Whether check restriction of excel file when user modify cells related objects.
For example, excel does not allow inputting string value longer than 32K.
When you input a value longer than 32K, it will be truncated. |
| [update_smart_art](/cells/python-net/aspose.cells/saveoptions/update_smart_art) | Indicates whether updating smart art setting.
The default value is false. |
| [encrypt_document_properties](/cells/python-net/aspose.cells/saveoptions/encrypt_document_properties) | Indicates whether encrypt document properties when saving as .xls file.
The default value is true. |
diff --git a/english/aspose.cells/saveoptions/check_excel_restriction/_index.md b/english/aspose.cells/saveoptions/check_excel_restriction/_index.md
new file mode 100644
index 0000000000..60a5674803
--- /dev/null
+++ b/english/aspose.cells/saveoptions/check_excel_restriction/_index.md
@@ -0,0 +1,29 @@
+---
+title: check_excel_restriction property
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 40
+url: /aspose.cells/saveoptions/check_excel_restriction/
+is_root: false
+---
+
+## check_excel_restriction property
+
+
+Whether check restriction of excel file when user modify cells related objects.
+For example, excel does not allow inputting string value longer than 32K.
+When you input a value longer than 32K, it will be truncated.
+### Definition:
+```python
+@property
+def check_excel_restriction(self):
+ ...
+@check_excel_restriction.setter
+def check_excel_restriction(self, value):
+ ...
+```
+
+### See Also
+* module [`aspose.cells`](../../)
+* class [`SaveOptions`](/cells/python-net/aspose.cells/saveoptions)
diff --git a/english/aspose.cells/saveoptions/clear_data/_index.md b/english/aspose.cells/saveoptions/clear_data/_index.md
index ba477fe5f0..f58e2c6ae6 100644
--- a/english/aspose.cells/saveoptions/clear_data/_index.md
+++ b/english/aspose.cells/saveoptions/clear_data/_index.md
@@ -3,7 +3,7 @@ title: clear_data property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 40
+weight: 50
url: /aspose.cells/saveoptions/clear_data/
is_root: false
---
diff --git a/english/aspose.cells/saveoptions/create_directory/_index.md b/english/aspose.cells/saveoptions/create_directory/_index.md
index 57c0d43c78..aa2387e8f6 100644
--- a/english/aspose.cells/saveoptions/create_directory/_index.md
+++ b/english/aspose.cells/saveoptions/create_directory/_index.md
@@ -3,7 +3,7 @@ title: create_directory property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 50
+weight: 60
url: /aspose.cells/saveoptions/create_directory/
is_root: false
---
diff --git a/english/aspose.cells/saveoptions/encrypt_document_properties/_index.md b/english/aspose.cells/saveoptions/encrypt_document_properties/_index.md
index 002c8e2c5b..1823cd84ea 100644
--- a/english/aspose.cells/saveoptions/encrypt_document_properties/_index.md
+++ b/english/aspose.cells/saveoptions/encrypt_document_properties/_index.md
@@ -3,7 +3,7 @@ title: encrypt_document_properties property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 60
+weight: 70
url: /aspose.cells/saveoptions/encrypt_document_properties/
is_root: false
---
diff --git a/english/aspose.cells/saveoptions/merge_areas/_index.md b/english/aspose.cells/saveoptions/merge_areas/_index.md
index b5bfbd7ab6..b8e78b4102 100644
--- a/english/aspose.cells/saveoptions/merge_areas/_index.md
+++ b/english/aspose.cells/saveoptions/merge_areas/_index.md
@@ -3,7 +3,7 @@ title: merge_areas property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 70
+weight: 80
url: /aspose.cells/saveoptions/merge_areas/
is_root: false
---
diff --git a/english/aspose.cells/saveoptions/refresh_chart_cache/_index.md b/english/aspose.cells/saveoptions/refresh_chart_cache/_index.md
index f4dab681b2..bcdc047cc8 100644
--- a/english/aspose.cells/saveoptions/refresh_chart_cache/_index.md
+++ b/english/aspose.cells/saveoptions/refresh_chart_cache/_index.md
@@ -3,7 +3,7 @@ title: refresh_chart_cache property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 80
+weight: 90
url: /aspose.cells/saveoptions/refresh_chart_cache/
is_root: false
---
diff --git a/english/aspose.cells/saveoptions/save_format/_index.md b/english/aspose.cells/saveoptions/save_format/_index.md
index c47fde7c89..635f4a4f9b 100644
--- a/english/aspose.cells/saveoptions/save_format/_index.md
+++ b/english/aspose.cells/saveoptions/save_format/_index.md
@@ -3,7 +3,7 @@ title: save_format property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 90
+weight: 100
url: /aspose.cells/saveoptions/save_format/
is_root: false
---
diff --git a/english/aspose.cells/saveoptions/sort_external_names/_index.md b/english/aspose.cells/saveoptions/sort_external_names/_index.md
index 18ecfed9c1..2d7d0bdae2 100644
--- a/english/aspose.cells/saveoptions/sort_external_names/_index.md
+++ b/english/aspose.cells/saveoptions/sort_external_names/_index.md
@@ -3,7 +3,7 @@ title: sort_external_names property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 100
+weight: 110
url: /aspose.cells/saveoptions/sort_external_names/
is_root: false
---
diff --git a/english/aspose.cells/saveoptions/sort_names/_index.md b/english/aspose.cells/saveoptions/sort_names/_index.md
index b070617022..8fb0a0e170 100644
--- a/english/aspose.cells/saveoptions/sort_names/_index.md
+++ b/english/aspose.cells/saveoptions/sort_names/_index.md
@@ -3,7 +3,7 @@ title: sort_names property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 110
+weight: 120
url: /aspose.cells/saveoptions/sort_names/
is_root: false
---
diff --git a/english/aspose.cells/saveoptions/update_smart_art/_index.md b/english/aspose.cells/saveoptions/update_smart_art/_index.md
index 06bd3cfc40..a73ce5fae8 100644
--- a/english/aspose.cells/saveoptions/update_smart_art/_index.md
+++ b/english/aspose.cells/saveoptions/update_smart_art/_index.md
@@ -3,7 +3,7 @@ title: update_smart_art property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 120
+weight: 130
url: /aspose.cells/saveoptions/update_smart_art/
is_root: false
---
diff --git a/english/aspose.cells/saveoptions/validate_merged_areas/_index.md b/english/aspose.cells/saveoptions/validate_merged_areas/_index.md
index 2170244a40..c3a0d72dd8 100644
--- a/english/aspose.cells/saveoptions/validate_merged_areas/_index.md
+++ b/english/aspose.cells/saveoptions/validate_merged_areas/_index.md
@@ -3,7 +3,7 @@ title: validate_merged_areas property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 130
+weight: 140
url: /aspose.cells/saveoptions/validate_merged_areas/
is_root: false
---
diff --git a/english/aspose.cells/saveoptions/warning_callback/_index.md b/english/aspose.cells/saveoptions/warning_callback/_index.md
index c48149c445..bc4cab7941 100644
--- a/english/aspose.cells/saveoptions/warning_callback/_index.md
+++ b/english/aspose.cells/saveoptions/warning_callback/_index.md
@@ -3,7 +3,7 @@ title: warning_callback property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 140
+weight: 150
url: /aspose.cells/saveoptions/warning_callback/
is_root: false
---
diff --git a/english/aspose.cells/scenario/_index.md b/english/aspose.cells/scenario/_index.md
index 77314d0573..803ef00e12 100644
--- a/english/aspose.cells/scenario/_index.md
+++ b/english/aspose.cells/scenario/_index.md
@@ -3,7 +3,7 @@ title: Scenario class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1410
+weight: 1420
url: /aspose.cells/scenario/
is_root: false
---
diff --git a/english/aspose.cells/scenariocollection/_index.md b/english/aspose.cells/scenariocollection/_index.md
index 58555547fc..6e5e890366 100644
--- a/english/aspose.cells/scenariocollection/_index.md
+++ b/english/aspose.cells/scenariocollection/_index.md
@@ -3,7 +3,7 @@ title: ScenarioCollection class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1420
+weight: 1430
url: /aspose.cells/scenariocollection/
is_root: false
---
diff --git a/english/aspose.cells/scenarioinputcell/_index.md b/english/aspose.cells/scenarioinputcell/_index.md
index 63e78549a8..4c3f4b0752 100644
--- a/english/aspose.cells/scenarioinputcell/_index.md
+++ b/english/aspose.cells/scenarioinputcell/_index.md
@@ -3,7 +3,7 @@ title: ScenarioInputCell class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1430
+weight: 1440
url: /aspose.cells/scenarioinputcell/
is_root: false
---
diff --git a/english/aspose.cells/scenarioinputcellcollection/_index.md b/english/aspose.cells/scenarioinputcellcollection/_index.md
index 62d03e60d4..15a2bfcea2 100644
--- a/english/aspose.cells/scenarioinputcellcollection/_index.md
+++ b/english/aspose.cells/scenarioinputcellcollection/_index.md
@@ -3,7 +3,7 @@ title: ScenarioInputCellCollection class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1440
+weight: 1450
url: /aspose.cells/scenarioinputcellcollection/
is_root: false
---
diff --git a/english/aspose.cells/settablechartglobalizationsettings/_index.md b/english/aspose.cells/settablechartglobalizationsettings/_index.md
index b55ffb3d27..6ec495f26a 100644
--- a/english/aspose.cells/settablechartglobalizationsettings/_index.md
+++ b/english/aspose.cells/settablechartglobalizationsettings/_index.md
@@ -3,7 +3,7 @@ title: SettableChartGlobalizationSettings class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1450
+weight: 1460
url: /aspose.cells/settablechartglobalizationsettings/
is_root: false
---
diff --git a/english/aspose.cells/settableglobalizationsettings/_index.md b/english/aspose.cells/settableglobalizationsettings/_index.md
index ec499de4fa..0b75004490 100644
--- a/english/aspose.cells/settableglobalizationsettings/_index.md
+++ b/english/aspose.cells/settableglobalizationsettings/_index.md
@@ -3,7 +3,7 @@ title: SettableGlobalizationSettings class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1460
+weight: 1470
url: /aspose.cells/settableglobalizationsettings/
is_root: false
---
diff --git a/english/aspose.cells/settablepivotglobalizationsettings/_index.md b/english/aspose.cells/settablepivotglobalizationsettings/_index.md
index 0ea821fc2f..1741a2cdbc 100644
--- a/english/aspose.cells/settablepivotglobalizationsettings/_index.md
+++ b/english/aspose.cells/settablepivotglobalizationsettings/_index.md
@@ -3,7 +3,7 @@ title: SettablePivotGlobalizationSettings class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1470
+weight: 1480
url: /aspose.cells/settablepivotglobalizationsettings/
is_root: false
---
diff --git a/english/aspose.cells/sheettype/_index.md b/english/aspose.cells/sheettype/_index.md
index 8dfd1d959b..e3672bb7bd 100644
--- a/english/aspose.cells/sheettype/_index.md
+++ b/english/aspose.cells/sheettype/_index.md
@@ -3,7 +3,7 @@ title: SheetType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2650
+weight: 2670
url: /aspose.cells/sheettype/
is_root: false
---
diff --git a/english/aspose.cells/shifttype/_index.md b/english/aspose.cells/shifttype/_index.md
index 3dbe5d7975..05adaa87ca 100644
--- a/english/aspose.cells/shifttype/_index.md
+++ b/english/aspose.cells/shifttype/_index.md
@@ -3,7 +3,7 @@ title: ShiftType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2660
+weight: 2680
url: /aspose.cells/shifttype/
is_root: false
---
diff --git a/english/aspose.cells/sortontype/_index.md b/english/aspose.cells/sortontype/_index.md
index 00705b2768..3c752cf76d 100644
--- a/english/aspose.cells/sortontype/_index.md
+++ b/english/aspose.cells/sortontype/_index.md
@@ -3,7 +3,7 @@ title: SortOnType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2670
+weight: 2690
url: /aspose.cells/sortontype/
is_root: false
---
diff --git a/english/aspose.cells/sortorder/_index.md b/english/aspose.cells/sortorder/_index.md
index 08ca37bcd1..3f0c468828 100644
--- a/english/aspose.cells/sortorder/_index.md
+++ b/english/aspose.cells/sortorder/_index.md
@@ -3,7 +3,7 @@ title: SortOrder enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2680
+weight: 2700
url: /aspose.cells/sortorder/
is_root: false
---
diff --git a/english/aspose.cells/spreadsheetml2003saveoptions/_index.md b/english/aspose.cells/spreadsheetml2003saveoptions/_index.md
index 56caf6125e..45456404d7 100644
--- a/english/aspose.cells/spreadsheetml2003saveoptions/_index.md
+++ b/english/aspose.cells/spreadsheetml2003saveoptions/_index.md
@@ -3,7 +3,7 @@ title: SpreadsheetML2003SaveOptions class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1480
+weight: 1490
url: /aspose.cells/spreadsheetml2003saveoptions/
is_root: false
---
@@ -41,6 +41,7 @@ The SpreadsheetML2003SaveOptions type exposes the following members:
| [sort_external_names](/cells/python-net/aspose.cells/spreadsheetml2003saveoptions/sort_external_names) | Indicates whether sorting external defined names before saving file. |
| [refresh_chart_cache](/cells/python-net/aspose.cells/spreadsheetml2003saveoptions/refresh_chart_cache) | Indicates whether refreshing chart cache data |
| [warning_callback](/cells/python-net/aspose.cells/spreadsheetml2003saveoptions/warning_callback) | Gets or sets warning callback. |
+| [check_excel_restriction](/cells/python-net/aspose.cells/spreadsheetml2003saveoptions/check_excel_restriction) | Whether check restriction of excel file when user modify cells related objects.
For example, excel does not allow inputting string value longer than 32K.
When you input a value longer than 32K, it will be truncated. |
| [update_smart_art](/cells/python-net/aspose.cells/spreadsheetml2003saveoptions/update_smart_art) | Indicates whether updating smart art setting.
The default value is false. |
| [encrypt_document_properties](/cells/python-net/aspose.cells/spreadsheetml2003saveoptions/encrypt_document_properties) | Indicates whether encrypt document properties when saving as .xls file.
The default value is true. |
| [is_indented_formatting](/cells/python-net/aspose.cells/spreadsheetml2003saveoptions/is_indented_formatting) | Causes child elements to be indented. |
diff --git a/english/aspose.cells/spreadsheetml2003saveoptions/check_excel_restriction/_index.md b/english/aspose.cells/spreadsheetml2003saveoptions/check_excel_restriction/_index.md
new file mode 100644
index 0000000000..49a7f79f08
--- /dev/null
+++ b/english/aspose.cells/spreadsheetml2003saveoptions/check_excel_restriction/_index.md
@@ -0,0 +1,29 @@
+---
+title: check_excel_restriction property
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 40
+url: /aspose.cells/spreadsheetml2003saveoptions/check_excel_restriction/
+is_root: false
+---
+
+## check_excel_restriction property
+
+
+Whether check restriction of excel file when user modify cells related objects.
+For example, excel does not allow inputting string value longer than 32K.
+When you input a value longer than 32K, it will be truncated.
+### Definition:
+```python
+@property
+def check_excel_restriction(self):
+ ...
+@check_excel_restriction.setter
+def check_excel_restriction(self, value):
+ ...
+```
+
+### See Also
+* module [`aspose.cells`](../../)
+* class [`SpreadsheetML2003SaveOptions`](/cells/python-net/aspose.cells/spreadsheetml2003saveoptions)
diff --git a/english/aspose.cells/spreadsheetml2003saveoptions/clear_data/_index.md b/english/aspose.cells/spreadsheetml2003saveoptions/clear_data/_index.md
index 45fada8332..a25bcb6987 100644
--- a/english/aspose.cells/spreadsheetml2003saveoptions/clear_data/_index.md
+++ b/english/aspose.cells/spreadsheetml2003saveoptions/clear_data/_index.md
@@ -3,7 +3,7 @@ title: clear_data property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 40
+weight: 50
url: /aspose.cells/spreadsheetml2003saveoptions/clear_data/
is_root: false
---
diff --git a/english/aspose.cells/spreadsheetml2003saveoptions/create_directory/_index.md b/english/aspose.cells/spreadsheetml2003saveoptions/create_directory/_index.md
index 567bf91971..6bac480fed 100644
--- a/english/aspose.cells/spreadsheetml2003saveoptions/create_directory/_index.md
+++ b/english/aspose.cells/spreadsheetml2003saveoptions/create_directory/_index.md
@@ -3,7 +3,7 @@ title: create_directory property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 50
+weight: 60
url: /aspose.cells/spreadsheetml2003saveoptions/create_directory/
is_root: false
---
diff --git a/english/aspose.cells/spreadsheetml2003saveoptions/encrypt_document_properties/_index.md b/english/aspose.cells/spreadsheetml2003saveoptions/encrypt_document_properties/_index.md
index f006aef360..23cdef63c1 100644
--- a/english/aspose.cells/spreadsheetml2003saveoptions/encrypt_document_properties/_index.md
+++ b/english/aspose.cells/spreadsheetml2003saveoptions/encrypt_document_properties/_index.md
@@ -3,7 +3,7 @@ title: encrypt_document_properties property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 60
+weight: 70
url: /aspose.cells/spreadsheetml2003saveoptions/encrypt_document_properties/
is_root: false
---
diff --git a/english/aspose.cells/spreadsheetml2003saveoptions/export_column_index_of_cell/_index.md b/english/aspose.cells/spreadsheetml2003saveoptions/export_column_index_of_cell/_index.md
index c00836de29..536de4e6ef 100644
--- a/english/aspose.cells/spreadsheetml2003saveoptions/export_column_index_of_cell/_index.md
+++ b/english/aspose.cells/spreadsheetml2003saveoptions/export_column_index_of_cell/_index.md
@@ -3,7 +3,7 @@ title: export_column_index_of_cell property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 70
+weight: 80
url: /aspose.cells/spreadsheetml2003saveoptions/export_column_index_of_cell/
is_root: false
---
diff --git a/english/aspose.cells/spreadsheetml2003saveoptions/is_indented_formatting/_index.md b/english/aspose.cells/spreadsheetml2003saveoptions/is_indented_formatting/_index.md
index 40338302a7..2cbdbccf0c 100644
--- a/english/aspose.cells/spreadsheetml2003saveoptions/is_indented_formatting/_index.md
+++ b/english/aspose.cells/spreadsheetml2003saveoptions/is_indented_formatting/_index.md
@@ -3,7 +3,7 @@ title: is_indented_formatting property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 80
+weight: 90
url: /aspose.cells/spreadsheetml2003saveoptions/is_indented_formatting/
is_root: false
---
diff --git a/english/aspose.cells/spreadsheetml2003saveoptions/limit_as_xls/_index.md b/english/aspose.cells/spreadsheetml2003saveoptions/limit_as_xls/_index.md
index 6386c16658..81c4d39842 100644
--- a/english/aspose.cells/spreadsheetml2003saveoptions/limit_as_xls/_index.md
+++ b/english/aspose.cells/spreadsheetml2003saveoptions/limit_as_xls/_index.md
@@ -3,7 +3,7 @@ title: limit_as_xls property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 90
+weight: 100
url: /aspose.cells/spreadsheetml2003saveoptions/limit_as_xls/
is_root: false
---
diff --git a/english/aspose.cells/spreadsheetml2003saveoptions/merge_areas/_index.md b/english/aspose.cells/spreadsheetml2003saveoptions/merge_areas/_index.md
index aad558b2e4..157b884e00 100644
--- a/english/aspose.cells/spreadsheetml2003saveoptions/merge_areas/_index.md
+++ b/english/aspose.cells/spreadsheetml2003saveoptions/merge_areas/_index.md
@@ -3,7 +3,7 @@ title: merge_areas property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 100
+weight: 110
url: /aspose.cells/spreadsheetml2003saveoptions/merge_areas/
is_root: false
---
diff --git a/english/aspose.cells/spreadsheetml2003saveoptions/refresh_chart_cache/_index.md b/english/aspose.cells/spreadsheetml2003saveoptions/refresh_chart_cache/_index.md
index 6710bf33e0..b77ff796f5 100644
--- a/english/aspose.cells/spreadsheetml2003saveoptions/refresh_chart_cache/_index.md
+++ b/english/aspose.cells/spreadsheetml2003saveoptions/refresh_chart_cache/_index.md
@@ -3,7 +3,7 @@ title: refresh_chart_cache property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 110
+weight: 120
url: /aspose.cells/spreadsheetml2003saveoptions/refresh_chart_cache/
is_root: false
---
diff --git a/english/aspose.cells/spreadsheetml2003saveoptions/save_format/_index.md b/english/aspose.cells/spreadsheetml2003saveoptions/save_format/_index.md
index 30b664e09c..8fd81031b5 100644
--- a/english/aspose.cells/spreadsheetml2003saveoptions/save_format/_index.md
+++ b/english/aspose.cells/spreadsheetml2003saveoptions/save_format/_index.md
@@ -3,7 +3,7 @@ title: save_format property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 120
+weight: 130
url: /aspose.cells/spreadsheetml2003saveoptions/save_format/
is_root: false
---
diff --git a/english/aspose.cells/spreadsheetml2003saveoptions/sort_external_names/_index.md b/english/aspose.cells/spreadsheetml2003saveoptions/sort_external_names/_index.md
index 19b68c53d3..cdfc1059f7 100644
--- a/english/aspose.cells/spreadsheetml2003saveoptions/sort_external_names/_index.md
+++ b/english/aspose.cells/spreadsheetml2003saveoptions/sort_external_names/_index.md
@@ -3,7 +3,7 @@ title: sort_external_names property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 130
+weight: 140
url: /aspose.cells/spreadsheetml2003saveoptions/sort_external_names/
is_root: false
---
diff --git a/english/aspose.cells/spreadsheetml2003saveoptions/sort_names/_index.md b/english/aspose.cells/spreadsheetml2003saveoptions/sort_names/_index.md
index 52e1f90835..0a5b8e1b35 100644
--- a/english/aspose.cells/spreadsheetml2003saveoptions/sort_names/_index.md
+++ b/english/aspose.cells/spreadsheetml2003saveoptions/sort_names/_index.md
@@ -3,7 +3,7 @@ title: sort_names property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 140
+weight: 150
url: /aspose.cells/spreadsheetml2003saveoptions/sort_names/
is_root: false
---
diff --git a/english/aspose.cells/spreadsheetml2003saveoptions/update_smart_art/_index.md b/english/aspose.cells/spreadsheetml2003saveoptions/update_smart_art/_index.md
index 6a95e7f822..19e53a5cc2 100644
--- a/english/aspose.cells/spreadsheetml2003saveoptions/update_smart_art/_index.md
+++ b/english/aspose.cells/spreadsheetml2003saveoptions/update_smart_art/_index.md
@@ -3,7 +3,7 @@ title: update_smart_art property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 150
+weight: 160
url: /aspose.cells/spreadsheetml2003saveoptions/update_smart_art/
is_root: false
---
diff --git a/english/aspose.cells/spreadsheetml2003saveoptions/validate_merged_areas/_index.md b/english/aspose.cells/spreadsheetml2003saveoptions/validate_merged_areas/_index.md
index 254c5430e3..373a75a15e 100644
--- a/english/aspose.cells/spreadsheetml2003saveoptions/validate_merged_areas/_index.md
+++ b/english/aspose.cells/spreadsheetml2003saveoptions/validate_merged_areas/_index.md
@@ -3,7 +3,7 @@ title: validate_merged_areas property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 160
+weight: 170
url: /aspose.cells/spreadsheetml2003saveoptions/validate_merged_areas/
is_root: false
---
diff --git a/english/aspose.cells/spreadsheetml2003saveoptions/warning_callback/_index.md b/english/aspose.cells/spreadsheetml2003saveoptions/warning_callback/_index.md
index 0a7cb0b4a1..f3b68d33a3 100644
--- a/english/aspose.cells/spreadsheetml2003saveoptions/warning_callback/_index.md
+++ b/english/aspose.cells/spreadsheetml2003saveoptions/warning_callback/_index.md
@@ -3,7 +3,7 @@ title: warning_callback property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 170
+weight: 180
url: /aspose.cells/spreadsheetml2003saveoptions/warning_callback/
is_root: false
---
diff --git a/english/aspose.cells/streamprovideroptions/_index.md b/english/aspose.cells/streamprovideroptions/_index.md
index bd7b3a674d..29075a3a78 100644
--- a/english/aspose.cells/streamprovideroptions/_index.md
+++ b/english/aspose.cells/streamprovideroptions/_index.md
@@ -3,7 +3,7 @@ title: StreamProviderOptions class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1490
+weight: 1500
url: /aspose.cells/streamprovideroptions/
is_root: false
---
diff --git a/english/aspose.cells/style/_index.md b/english/aspose.cells/style/_index.md
index de06f6bde5..266aeaad2f 100644
--- a/english/aspose.cells/style/_index.md
+++ b/english/aspose.cells/style/_index.md
@@ -3,7 +3,7 @@ title: Style class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1500
+weight: 1510
url: /aspose.cells/style/
is_root: false
---
diff --git a/english/aspose.cells/styleflag/_index.md b/english/aspose.cells/styleflag/_index.md
index 455310ff90..75b2bee0af 100644
--- a/english/aspose.cells/styleflag/_index.md
+++ b/english/aspose.cells/styleflag/_index.md
@@ -3,7 +3,7 @@ title: StyleFlag class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1510
+weight: 1520
url: /aspose.cells/styleflag/
is_root: false
---
diff --git a/english/aspose.cells/stylemodifyflag/_index.md b/english/aspose.cells/stylemodifyflag/_index.md
index c0792e7437..3dc575a09a 100644
--- a/english/aspose.cells/stylemodifyflag/_index.md
+++ b/english/aspose.cells/stylemodifyflag/_index.md
@@ -3,7 +3,7 @@ title: StyleModifyFlag enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2690
+weight: 2710
url: /aspose.cells/stylemodifyflag/
is_root: false
---
diff --git a/english/aspose.cells/subtotalsetting/_index.md b/english/aspose.cells/subtotalsetting/_index.md
index 85d7cd6fc9..e86bbee5f8 100644
--- a/english/aspose.cells/subtotalsetting/_index.md
+++ b/english/aspose.cells/subtotalsetting/_index.md
@@ -3,7 +3,7 @@ title: SubtotalSetting class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1520
+weight: 1530
url: /aspose.cells/subtotalsetting/
is_root: false
---
diff --git a/english/aspose.cells/svgsaveoptions/_index.md b/english/aspose.cells/svgsaveoptions/_index.md
index fae263efa2..d4d8972492 100644
--- a/english/aspose.cells/svgsaveoptions/_index.md
+++ b/english/aspose.cells/svgsaveoptions/_index.md
@@ -3,7 +3,7 @@ title: SvgSaveOptions class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1530
+weight: 1540
url: /aspose.cells/svgsaveoptions/
is_root: false
---
@@ -40,6 +40,7 @@ The SvgSaveOptions type exposes the following members:
| [sort_external_names](/cells/python-net/aspose.cells/svgsaveoptions/sort_external_names) | Indicates whether sorting external defined names before saving file. |
| [refresh_chart_cache](/cells/python-net/aspose.cells/svgsaveoptions/refresh_chart_cache) | Indicates whether refreshing chart cache data |
| [warning_callback](/cells/python-net/aspose.cells/svgsaveoptions/warning_callback) | Gets or sets warning callback. |
+| [check_excel_restriction](/cells/python-net/aspose.cells/svgsaveoptions/check_excel_restriction) | Whether check restriction of excel file when user modify cells related objects.
For example, excel does not allow inputting string value longer than 32K.
When you input a value longer than 32K, it will be truncated. |
| [update_smart_art](/cells/python-net/aspose.cells/svgsaveoptions/update_smart_art) | Indicates whether updating smart art setting.
The default value is false. |
| [encrypt_document_properties](/cells/python-net/aspose.cells/svgsaveoptions/encrypt_document_properties) | Indicates whether encrypt document properties when saving as .xls file.
The default value is true. |
| [image_or_print_options](/cells/python-net/aspose.cells/svgsaveoptions/image_or_print_options) | Additional image creation options. |
diff --git a/english/aspose.cells/svgsaveoptions/check_excel_restriction/_index.md b/english/aspose.cells/svgsaveoptions/check_excel_restriction/_index.md
new file mode 100644
index 0000000000..1b858e0416
--- /dev/null
+++ b/english/aspose.cells/svgsaveoptions/check_excel_restriction/_index.md
@@ -0,0 +1,29 @@
+---
+title: check_excel_restriction property
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 40
+url: /aspose.cells/svgsaveoptions/check_excel_restriction/
+is_root: false
+---
+
+## check_excel_restriction property
+
+
+Whether check restriction of excel file when user modify cells related objects.
+For example, excel does not allow inputting string value longer than 32K.
+When you input a value longer than 32K, it will be truncated.
+### Definition:
+```python
+@property
+def check_excel_restriction(self):
+ ...
+@check_excel_restriction.setter
+def check_excel_restriction(self, value):
+ ...
+```
+
+### See Also
+* module [`aspose.cells`](../../)
+* class [`SvgSaveOptions`](/cells/python-net/aspose.cells/svgsaveoptions)
diff --git a/english/aspose.cells/svgsaveoptions/clear_data/_index.md b/english/aspose.cells/svgsaveoptions/clear_data/_index.md
index d8bf8a3147..e03c7b2bf4 100644
--- a/english/aspose.cells/svgsaveoptions/clear_data/_index.md
+++ b/english/aspose.cells/svgsaveoptions/clear_data/_index.md
@@ -3,7 +3,7 @@ title: clear_data property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 40
+weight: 50
url: /aspose.cells/svgsaveoptions/clear_data/
is_root: false
---
diff --git a/english/aspose.cells/svgsaveoptions/create_directory/_index.md b/english/aspose.cells/svgsaveoptions/create_directory/_index.md
index b9b0640cc7..e5eb95df18 100644
--- a/english/aspose.cells/svgsaveoptions/create_directory/_index.md
+++ b/english/aspose.cells/svgsaveoptions/create_directory/_index.md
@@ -3,7 +3,7 @@ title: create_directory property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 50
+weight: 60
url: /aspose.cells/svgsaveoptions/create_directory/
is_root: false
---
diff --git a/english/aspose.cells/svgsaveoptions/encrypt_document_properties/_index.md b/english/aspose.cells/svgsaveoptions/encrypt_document_properties/_index.md
index 1618d74fa6..d8125acea0 100644
--- a/english/aspose.cells/svgsaveoptions/encrypt_document_properties/_index.md
+++ b/english/aspose.cells/svgsaveoptions/encrypt_document_properties/_index.md
@@ -3,7 +3,7 @@ title: encrypt_document_properties property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 60
+weight: 70
url: /aspose.cells/svgsaveoptions/encrypt_document_properties/
is_root: false
---
diff --git a/english/aspose.cells/svgsaveoptions/image_or_print_options/_index.md b/english/aspose.cells/svgsaveoptions/image_or_print_options/_index.md
index f08f373dae..678e727bb3 100644
--- a/english/aspose.cells/svgsaveoptions/image_or_print_options/_index.md
+++ b/english/aspose.cells/svgsaveoptions/image_or_print_options/_index.md
@@ -3,7 +3,7 @@ title: image_or_print_options property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 70
+weight: 80
url: /aspose.cells/svgsaveoptions/image_or_print_options/
is_root: false
---
diff --git a/english/aspose.cells/svgsaveoptions/merge_areas/_index.md b/english/aspose.cells/svgsaveoptions/merge_areas/_index.md
index 2025dc2fb6..bee878d50c 100644
--- a/english/aspose.cells/svgsaveoptions/merge_areas/_index.md
+++ b/english/aspose.cells/svgsaveoptions/merge_areas/_index.md
@@ -3,7 +3,7 @@ title: merge_areas property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 80
+weight: 90
url: /aspose.cells/svgsaveoptions/merge_areas/
is_root: false
---
diff --git a/english/aspose.cells/svgsaveoptions/refresh_chart_cache/_index.md b/english/aspose.cells/svgsaveoptions/refresh_chart_cache/_index.md
index c12bb9664c..e8d590bdaa 100644
--- a/english/aspose.cells/svgsaveoptions/refresh_chart_cache/_index.md
+++ b/english/aspose.cells/svgsaveoptions/refresh_chart_cache/_index.md
@@ -3,7 +3,7 @@ title: refresh_chart_cache property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 90
+weight: 100
url: /aspose.cells/svgsaveoptions/refresh_chart_cache/
is_root: false
---
diff --git a/english/aspose.cells/svgsaveoptions/save_format/_index.md b/english/aspose.cells/svgsaveoptions/save_format/_index.md
index 2c4b55cbd3..2dce48e406 100644
--- a/english/aspose.cells/svgsaveoptions/save_format/_index.md
+++ b/english/aspose.cells/svgsaveoptions/save_format/_index.md
@@ -3,7 +3,7 @@ title: save_format property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 100
+weight: 110
url: /aspose.cells/svgsaveoptions/save_format/
is_root: false
---
diff --git a/english/aspose.cells/svgsaveoptions/sheet_index/_index.md b/english/aspose.cells/svgsaveoptions/sheet_index/_index.md
index 720710cbd7..475b5d6782 100644
--- a/english/aspose.cells/svgsaveoptions/sheet_index/_index.md
+++ b/english/aspose.cells/svgsaveoptions/sheet_index/_index.md
@@ -3,7 +3,7 @@ title: sheet_index property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 110
+weight: 120
url: /aspose.cells/svgsaveoptions/sheet_index/
is_root: false
---
diff --git a/english/aspose.cells/svgsaveoptions/sort_external_names/_index.md b/english/aspose.cells/svgsaveoptions/sort_external_names/_index.md
index ea9491cc9d..abeaac4d5c 100644
--- a/english/aspose.cells/svgsaveoptions/sort_external_names/_index.md
+++ b/english/aspose.cells/svgsaveoptions/sort_external_names/_index.md
@@ -3,7 +3,7 @@ title: sort_external_names property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 120
+weight: 130
url: /aspose.cells/svgsaveoptions/sort_external_names/
is_root: false
---
diff --git a/english/aspose.cells/svgsaveoptions/sort_names/_index.md b/english/aspose.cells/svgsaveoptions/sort_names/_index.md
index fd7fe5cfd5..1d0e045f82 100644
--- a/english/aspose.cells/svgsaveoptions/sort_names/_index.md
+++ b/english/aspose.cells/svgsaveoptions/sort_names/_index.md
@@ -3,7 +3,7 @@ title: sort_names property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 130
+weight: 140
url: /aspose.cells/svgsaveoptions/sort_names/
is_root: false
---
diff --git a/english/aspose.cells/svgsaveoptions/stream_provider/_index.md b/english/aspose.cells/svgsaveoptions/stream_provider/_index.md
index d0ab45e54f..e2ccd14529 100644
--- a/english/aspose.cells/svgsaveoptions/stream_provider/_index.md
+++ b/english/aspose.cells/svgsaveoptions/stream_provider/_index.md
@@ -3,7 +3,7 @@ title: stream_provider property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 140
+weight: 150
url: /aspose.cells/svgsaveoptions/stream_provider/
is_root: false
---
diff --git a/english/aspose.cells/svgsaveoptions/update_smart_art/_index.md b/english/aspose.cells/svgsaveoptions/update_smart_art/_index.md
index 1f12e182b3..c0327ae44d 100644
--- a/english/aspose.cells/svgsaveoptions/update_smart_art/_index.md
+++ b/english/aspose.cells/svgsaveoptions/update_smart_art/_index.md
@@ -3,7 +3,7 @@ title: update_smart_art property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 150
+weight: 160
url: /aspose.cells/svgsaveoptions/update_smart_art/
is_root: false
---
diff --git a/english/aspose.cells/svgsaveoptions/validate_merged_areas/_index.md b/english/aspose.cells/svgsaveoptions/validate_merged_areas/_index.md
index 8a05a849dd..10ec8a2bb8 100644
--- a/english/aspose.cells/svgsaveoptions/validate_merged_areas/_index.md
+++ b/english/aspose.cells/svgsaveoptions/validate_merged_areas/_index.md
@@ -3,7 +3,7 @@ title: validate_merged_areas property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 160
+weight: 170
url: /aspose.cells/svgsaveoptions/validate_merged_areas/
is_root: false
---
diff --git a/english/aspose.cells/svgsaveoptions/warning_callback/_index.md b/english/aspose.cells/svgsaveoptions/warning_callback/_index.md
index 6986299656..a544fc0748 100644
--- a/english/aspose.cells/svgsaveoptions/warning_callback/_index.md
+++ b/english/aspose.cells/svgsaveoptions/warning_callback/_index.md
@@ -3,7 +3,7 @@ title: warning_callback property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 170
+weight: 180
url: /aspose.cells/svgsaveoptions/warning_callback/
is_root: false
---
diff --git a/english/aspose.cells/systemtimeinterruptmonitor/_index.md b/english/aspose.cells/systemtimeinterruptmonitor/_index.md
index 7a743d1c9f..d87e468ed3 100644
--- a/english/aspose.cells/systemtimeinterruptmonitor/_index.md
+++ b/english/aspose.cells/systemtimeinterruptmonitor/_index.md
@@ -3,7 +3,7 @@ title: SystemTimeInterruptMonitor class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1540
+weight: 1550
url: /aspose.cells/systemtimeinterruptmonitor/
is_root: false
---
diff --git a/english/aspose.cells/targetmodetype/_index.md b/english/aspose.cells/targetmodetype/_index.md
index e715aadc61..9b8cb2b4db 100644
--- a/english/aspose.cells/targetmodetype/_index.md
+++ b/english/aspose.cells/targetmodetype/_index.md
@@ -3,7 +3,7 @@ title: TargetModeType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2700
+weight: 2720
url: /aspose.cells/targetmodetype/
is_root: false
---
diff --git a/english/aspose.cells/textalignmenttype/_index.md b/english/aspose.cells/textalignmenttype/_index.md
index 9283eaa83b..23a4d2b59a 100644
--- a/english/aspose.cells/textalignmenttype/_index.md
+++ b/english/aspose.cells/textalignmenttype/_index.md
@@ -3,7 +3,7 @@ title: TextAlignmentType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2710
+weight: 2730
url: /aspose.cells/textalignmenttype/
is_root: false
---
diff --git a/english/aspose.cells/textcapstype/_index.md b/english/aspose.cells/textcapstype/_index.md
index 04e0161434..1d955a3fd3 100644
--- a/english/aspose.cells/textcapstype/_index.md
+++ b/english/aspose.cells/textcapstype/_index.md
@@ -3,7 +3,7 @@ title: TextCapsType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2720
+weight: 2740
url: /aspose.cells/textcapstype/
is_root: false
---
diff --git a/english/aspose.cells/textcrosstype/_index.md b/english/aspose.cells/textcrosstype/_index.md
index 9073515da4..7d220021f7 100644
--- a/english/aspose.cells/textcrosstype/_index.md
+++ b/english/aspose.cells/textcrosstype/_index.md
@@ -3,7 +3,7 @@ title: TextCrossType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2730
+weight: 2750
url: /aspose.cells/textcrosstype/
is_root: false
---
diff --git a/english/aspose.cells/textdirectiontype/_index.md b/english/aspose.cells/textdirectiontype/_index.md
index a4ab2066dc..d2eb20aa28 100644
--- a/english/aspose.cells/textdirectiontype/_index.md
+++ b/english/aspose.cells/textdirectiontype/_index.md
@@ -3,7 +3,7 @@ title: TextDirectionType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2740
+weight: 2760
url: /aspose.cells/textdirectiontype/
is_root: false
---
diff --git a/english/aspose.cells/textorientationtype/_index.md b/english/aspose.cells/textorientationtype/_index.md
index 78d794d82d..6fb718f224 100644
--- a/english/aspose.cells/textorientationtype/_index.md
+++ b/english/aspose.cells/textorientationtype/_index.md
@@ -3,7 +3,7 @@ title: TextOrientationType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2750
+weight: 2770
url: /aspose.cells/textorientationtype/
is_root: false
---
diff --git a/english/aspose.cells/textstriketype/_index.md b/english/aspose.cells/textstriketype/_index.md
index 3222186163..bb06b8aff4 100644
--- a/english/aspose.cells/textstriketype/_index.md
+++ b/english/aspose.cells/textstriketype/_index.md
@@ -3,7 +3,7 @@ title: TextStrikeType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2760
+weight: 2780
url: /aspose.cells/textstriketype/
is_root: false
---
diff --git a/english/aspose.cells/themecolor/_index.md b/english/aspose.cells/themecolor/_index.md
index b439df8ad3..626c9e45ee 100644
--- a/english/aspose.cells/themecolor/_index.md
+++ b/english/aspose.cells/themecolor/_index.md
@@ -3,7 +3,7 @@ title: ThemeColor class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1550
+weight: 1560
url: /aspose.cells/themecolor/
is_root: false
---
diff --git a/english/aspose.cells/themecolortype/_index.md b/english/aspose.cells/themecolortype/_index.md
index 1ca2f815d3..928b3a01ce 100644
--- a/english/aspose.cells/themecolortype/_index.md
+++ b/english/aspose.cells/themecolortype/_index.md
@@ -3,7 +3,7 @@ title: ThemeColorType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2770
+weight: 2790
url: /aspose.cells/themecolortype/
is_root: false
---
diff --git a/english/aspose.cells/threadedcomment/_index.md b/english/aspose.cells/threadedcomment/_index.md
index 4f0ce62b19..2923dbb9a5 100644
--- a/english/aspose.cells/threadedcomment/_index.md
+++ b/english/aspose.cells/threadedcomment/_index.md
@@ -3,7 +3,7 @@ title: ThreadedComment class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1570
+weight: 1580
url: /aspose.cells/threadedcomment/
is_root: false
---
diff --git a/english/aspose.cells/threadedcommentauthor/_index.md b/english/aspose.cells/threadedcommentauthor/_index.md
index 0ff76035d0..4a31e4367b 100644
--- a/english/aspose.cells/threadedcommentauthor/_index.md
+++ b/english/aspose.cells/threadedcommentauthor/_index.md
@@ -3,7 +3,7 @@ title: ThreadedCommentAuthor class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1580
+weight: 1590
url: /aspose.cells/threadedcommentauthor/
is_root: false
---
diff --git a/english/aspose.cells/threadedcommentauthorcollection/_index.md b/english/aspose.cells/threadedcommentauthorcollection/_index.md
index c9d878441b..5bd647b191 100644
--- a/english/aspose.cells/threadedcommentauthorcollection/_index.md
+++ b/english/aspose.cells/threadedcommentauthorcollection/_index.md
@@ -3,7 +3,7 @@ title: ThreadedCommentAuthorCollection class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1590
+weight: 1600
url: /aspose.cells/threadedcommentauthorcollection/
is_root: false
---
diff --git a/english/aspose.cells/threadedcommentcollection/_index.md b/english/aspose.cells/threadedcommentcollection/_index.md
index ee3ae6c8d7..dde14ad74f 100644
--- a/english/aspose.cells/threadedcommentcollection/_index.md
+++ b/english/aspose.cells/threadedcommentcollection/_index.md
@@ -3,7 +3,7 @@ title: ThreadedCommentCollection class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1600
+weight: 1610
url: /aspose.cells/threadedcommentcollection/
is_root: false
---
diff --git a/english/aspose.cells/threadinterruptmonitor/_index.md b/english/aspose.cells/threadinterruptmonitor/_index.md
index b4b5928d86..7712af8dfa 100644
--- a/english/aspose.cells/threadinterruptmonitor/_index.md
+++ b/english/aspose.cells/threadinterruptmonitor/_index.md
@@ -3,7 +3,7 @@ title: ThreadInterruptMonitor class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1560
+weight: 1570
url: /aspose.cells/threadinterruptmonitor/
is_root: false
---
diff --git a/english/aspose.cells/timeperiodtype/_index.md b/english/aspose.cells/timeperiodtype/_index.md
index 07c1264b7d..66ffd81406 100644
--- a/english/aspose.cells/timeperiodtype/_index.md
+++ b/english/aspose.cells/timeperiodtype/_index.md
@@ -3,7 +3,7 @@ title: TimePeriodType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2780
+weight: 2800
url: /aspose.cells/timeperiodtype/
is_root: false
---
diff --git a/english/aspose.cells/top10/_index.md b/english/aspose.cells/top10/_index.md
index ec6ecdaa04..8f5cf03ed4 100644
--- a/english/aspose.cells/top10/_index.md
+++ b/english/aspose.cells/top10/_index.md
@@ -3,7 +3,7 @@ title: Top10 class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1610
+weight: 1620
url: /aspose.cells/top10/
is_root: false
---
diff --git a/english/aspose.cells/top10filter/_index.md b/english/aspose.cells/top10filter/_index.md
index ccab181342..5de01d7d6b 100644
--- a/english/aspose.cells/top10filter/_index.md
+++ b/english/aspose.cells/top10filter/_index.md
@@ -3,7 +3,7 @@ title: Top10Filter class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1620
+weight: 1630
url: /aspose.cells/top10filter/
is_root: false
---
diff --git a/english/aspose.cells/twocolorgradient/_index.md b/english/aspose.cells/twocolorgradient/_index.md
index c9d6de3e9c..d50414f5be 100644
--- a/english/aspose.cells/twocolorgradient/_index.md
+++ b/english/aspose.cells/twocolorgradient/_index.md
@@ -3,7 +3,7 @@ title: TwoColorGradient class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1630
+weight: 1640
url: /aspose.cells/twocolorgradient/
is_root: false
---
diff --git a/english/aspose.cells/txtloadoptions/_index.md b/english/aspose.cells/txtloadoptions/_index.md
index 5c59f8048c..3488169944 100644
--- a/english/aspose.cells/txtloadoptions/_index.md
+++ b/english/aspose.cells/txtloadoptions/_index.md
@@ -3,7 +3,7 @@ title: TxtLoadOptions class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1640
+weight: 1650
url: /aspose.cells/txtloadoptions/
is_root: false
---
diff --git a/english/aspose.cells/txtloadstylestrategy/_index.md b/english/aspose.cells/txtloadstylestrategy/_index.md
index 73b10d43cc..a724c7757a 100644
--- a/english/aspose.cells/txtloadstylestrategy/_index.md
+++ b/english/aspose.cells/txtloadstylestrategy/_index.md
@@ -3,7 +3,7 @@ title: TxtLoadStyleStrategy enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2790
+weight: 2810
url: /aspose.cells/txtloadstylestrategy/
is_root: false
---
diff --git a/english/aspose.cells/txtsaveoptions/_index.md b/english/aspose.cells/txtsaveoptions/_index.md
index 37ee57eb6c..e808936972 100644
--- a/english/aspose.cells/txtsaveoptions/_index.md
+++ b/english/aspose.cells/txtsaveoptions/_index.md
@@ -3,7 +3,7 @@ title: TxtSaveOptions class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1650
+weight: 1660
url: /aspose.cells/txtsaveoptions/
is_root: false
---
@@ -41,6 +41,7 @@ The TxtSaveOptions type exposes the following members:
| [sort_external_names](/cells/python-net/aspose.cells/txtsaveoptions/sort_external_names) | Indicates whether sorting external defined names before saving file. |
| [refresh_chart_cache](/cells/python-net/aspose.cells/txtsaveoptions/refresh_chart_cache) | Indicates whether refreshing chart cache data |
| [warning_callback](/cells/python-net/aspose.cells/txtsaveoptions/warning_callback) | Gets or sets warning callback. |
+| [check_excel_restriction](/cells/python-net/aspose.cells/txtsaveoptions/check_excel_restriction) | Whether check restriction of excel file when user modify cells related objects.
For example, excel does not allow inputting string value longer than 32K.
When you input a value longer than 32K, it will be truncated. |
| [update_smart_art](/cells/python-net/aspose.cells/txtsaveoptions/update_smart_art) | Indicates whether updating smart art setting.
The default value is false. |
| [encrypt_document_properties](/cells/python-net/aspose.cells/txtsaveoptions/encrypt_document_properties) | Indicates whether encrypt document properties when saving as .xls file.
The default value is true. |
| [separator](/cells/python-net/aspose.cells/txtsaveoptions/separator) | Gets and sets char Delimiter of text file. |
diff --git a/english/aspose.cells/txtsaveoptions/check_excel_restriction/_index.md b/english/aspose.cells/txtsaveoptions/check_excel_restriction/_index.md
new file mode 100644
index 0000000000..ab22ed05fe
--- /dev/null
+++ b/english/aspose.cells/txtsaveoptions/check_excel_restriction/_index.md
@@ -0,0 +1,29 @@
+---
+title: check_excel_restriction property
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 50
+url: /aspose.cells/txtsaveoptions/check_excel_restriction/
+is_root: false
+---
+
+## check_excel_restriction property
+
+
+Whether check restriction of excel file when user modify cells related objects.
+For example, excel does not allow inputting string value longer than 32K.
+When you input a value longer than 32K, it will be truncated.
+### Definition:
+```python
+@property
+def check_excel_restriction(self):
+ ...
+@check_excel_restriction.setter
+def check_excel_restriction(self, value):
+ ...
+```
+
+### See Also
+* module [`aspose.cells`](../../)
+* class [`TxtSaveOptions`](/cells/python-net/aspose.cells/txtsaveoptions)
diff --git a/english/aspose.cells/txtsaveoptions/clear_data/_index.md b/english/aspose.cells/txtsaveoptions/clear_data/_index.md
index c85243c6e7..c7a64d379e 100644
--- a/english/aspose.cells/txtsaveoptions/clear_data/_index.md
+++ b/english/aspose.cells/txtsaveoptions/clear_data/_index.md
@@ -3,7 +3,7 @@ title: clear_data property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 50
+weight: 60
url: /aspose.cells/txtsaveoptions/clear_data/
is_root: false
---
diff --git a/english/aspose.cells/txtsaveoptions/create_directory/_index.md b/english/aspose.cells/txtsaveoptions/create_directory/_index.md
index 5126a72977..89d0334ee2 100644
--- a/english/aspose.cells/txtsaveoptions/create_directory/_index.md
+++ b/english/aspose.cells/txtsaveoptions/create_directory/_index.md
@@ -3,7 +3,7 @@ title: create_directory property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 60
+weight: 70
url: /aspose.cells/txtsaveoptions/create_directory/
is_root: false
---
diff --git a/english/aspose.cells/txtsaveoptions/encoding/_index.md b/english/aspose.cells/txtsaveoptions/encoding/_index.md
index 735253cc5b..11b5171909 100644
--- a/english/aspose.cells/txtsaveoptions/encoding/_index.md
+++ b/english/aspose.cells/txtsaveoptions/encoding/_index.md
@@ -3,7 +3,7 @@ title: encoding property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 70
+weight: 80
url: /aspose.cells/txtsaveoptions/encoding/
is_root: false
---
diff --git a/english/aspose.cells/txtsaveoptions/encrypt_document_properties/_index.md b/english/aspose.cells/txtsaveoptions/encrypt_document_properties/_index.md
index b6f4ffc86c..2a63a0cec9 100644
--- a/english/aspose.cells/txtsaveoptions/encrypt_document_properties/_index.md
+++ b/english/aspose.cells/txtsaveoptions/encrypt_document_properties/_index.md
@@ -3,7 +3,7 @@ title: encrypt_document_properties property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 80
+weight: 90
url: /aspose.cells/txtsaveoptions/encrypt_document_properties/
is_root: false
---
diff --git a/english/aspose.cells/txtsaveoptions/export_all_sheets/_index.md b/english/aspose.cells/txtsaveoptions/export_all_sheets/_index.md
index 635041a9f8..82eda0c2a0 100644
--- a/english/aspose.cells/txtsaveoptions/export_all_sheets/_index.md
+++ b/english/aspose.cells/txtsaveoptions/export_all_sheets/_index.md
@@ -3,7 +3,7 @@ title: export_all_sheets property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 90
+weight: 100
url: /aspose.cells/txtsaveoptions/export_all_sheets/
is_root: false
---
diff --git a/english/aspose.cells/txtsaveoptions/export_area/_index.md b/english/aspose.cells/txtsaveoptions/export_area/_index.md
index 98684100f9..0a5ae6b821 100644
--- a/english/aspose.cells/txtsaveoptions/export_area/_index.md
+++ b/english/aspose.cells/txtsaveoptions/export_area/_index.md
@@ -3,7 +3,7 @@ title: export_area property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 100
+weight: 110
url: /aspose.cells/txtsaveoptions/export_area/
is_root: false
---
diff --git a/english/aspose.cells/txtsaveoptions/export_quote_prefix/_index.md b/english/aspose.cells/txtsaveoptions/export_quote_prefix/_index.md
index 5e8baad4d9..a62a53cfbc 100644
--- a/english/aspose.cells/txtsaveoptions/export_quote_prefix/_index.md
+++ b/english/aspose.cells/txtsaveoptions/export_quote_prefix/_index.md
@@ -3,7 +3,7 @@ title: export_quote_prefix property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 110
+weight: 120
url: /aspose.cells/txtsaveoptions/export_quote_prefix/
is_root: false
---
diff --git a/english/aspose.cells/txtsaveoptions/format_strategy/_index.md b/english/aspose.cells/txtsaveoptions/format_strategy/_index.md
index 06327c9f38..8a906497bd 100644
--- a/english/aspose.cells/txtsaveoptions/format_strategy/_index.md
+++ b/english/aspose.cells/txtsaveoptions/format_strategy/_index.md
@@ -3,7 +3,7 @@ title: format_strategy property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 120
+weight: 130
url: /aspose.cells/txtsaveoptions/format_strategy/
is_root: false
---
diff --git a/english/aspose.cells/txtsaveoptions/keep_separators_for_blank_row/_index.md b/english/aspose.cells/txtsaveoptions/keep_separators_for_blank_row/_index.md
index 8c12f4d4bf..46e550b979 100644
--- a/english/aspose.cells/txtsaveoptions/keep_separators_for_blank_row/_index.md
+++ b/english/aspose.cells/txtsaveoptions/keep_separators_for_blank_row/_index.md
@@ -3,7 +3,7 @@ title: keep_separators_for_blank_row property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 130
+weight: 140
url: /aspose.cells/txtsaveoptions/keep_separators_for_blank_row/
is_root: false
---
diff --git a/english/aspose.cells/txtsaveoptions/light_cells_data_provider/_index.md b/english/aspose.cells/txtsaveoptions/light_cells_data_provider/_index.md
index 7b14821ad9..67dc777aae 100644
--- a/english/aspose.cells/txtsaveoptions/light_cells_data_provider/_index.md
+++ b/english/aspose.cells/txtsaveoptions/light_cells_data_provider/_index.md
@@ -3,7 +3,7 @@ title: light_cells_data_provider property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 140
+weight: 150
url: /aspose.cells/txtsaveoptions/light_cells_data_provider/
is_root: false
---
diff --git a/english/aspose.cells/txtsaveoptions/merge_areas/_index.md b/english/aspose.cells/txtsaveoptions/merge_areas/_index.md
index d8de9b2149..19e9f31404 100644
--- a/english/aspose.cells/txtsaveoptions/merge_areas/_index.md
+++ b/english/aspose.cells/txtsaveoptions/merge_areas/_index.md
@@ -3,7 +3,7 @@ title: merge_areas property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 150
+weight: 160
url: /aspose.cells/txtsaveoptions/merge_areas/
is_root: false
---
diff --git a/english/aspose.cells/txtsaveoptions/quote_type/_index.md b/english/aspose.cells/txtsaveoptions/quote_type/_index.md
index 229f84c7a9..0b2b4467d1 100644
--- a/english/aspose.cells/txtsaveoptions/quote_type/_index.md
+++ b/english/aspose.cells/txtsaveoptions/quote_type/_index.md
@@ -3,7 +3,7 @@ title: quote_type property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 160
+weight: 170
url: /aspose.cells/txtsaveoptions/quote_type/
is_root: false
---
diff --git a/english/aspose.cells/txtsaveoptions/refresh_chart_cache/_index.md b/english/aspose.cells/txtsaveoptions/refresh_chart_cache/_index.md
index 61b7f989ca..6675dcc7a6 100644
--- a/english/aspose.cells/txtsaveoptions/refresh_chart_cache/_index.md
+++ b/english/aspose.cells/txtsaveoptions/refresh_chart_cache/_index.md
@@ -3,7 +3,7 @@ title: refresh_chart_cache property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 170
+weight: 180
url: /aspose.cells/txtsaveoptions/refresh_chart_cache/
is_root: false
---
diff --git a/english/aspose.cells/txtsaveoptions/save_format/_index.md b/english/aspose.cells/txtsaveoptions/save_format/_index.md
index 8dc9f2264f..fca55a87ae 100644
--- a/english/aspose.cells/txtsaveoptions/save_format/_index.md
+++ b/english/aspose.cells/txtsaveoptions/save_format/_index.md
@@ -3,7 +3,7 @@ title: save_format property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 180
+weight: 190
url: /aspose.cells/txtsaveoptions/save_format/
is_root: false
---
diff --git a/english/aspose.cells/txtsaveoptions/separator/_index.md b/english/aspose.cells/txtsaveoptions/separator/_index.md
index 09bbc9d879..6da234bd74 100644
--- a/english/aspose.cells/txtsaveoptions/separator/_index.md
+++ b/english/aspose.cells/txtsaveoptions/separator/_index.md
@@ -3,7 +3,7 @@ title: separator property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 190
+weight: 200
url: /aspose.cells/txtsaveoptions/separator/
is_root: false
---
diff --git a/english/aspose.cells/txtsaveoptions/separator_string/_index.md b/english/aspose.cells/txtsaveoptions/separator_string/_index.md
index 139aa841d3..b8416872be 100644
--- a/english/aspose.cells/txtsaveoptions/separator_string/_index.md
+++ b/english/aspose.cells/txtsaveoptions/separator_string/_index.md
@@ -3,7 +3,7 @@ title: separator_string property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 200
+weight: 210
url: /aspose.cells/txtsaveoptions/separator_string/
is_root: false
---
diff --git a/english/aspose.cells/txtsaveoptions/sort_external_names/_index.md b/english/aspose.cells/txtsaveoptions/sort_external_names/_index.md
index 8145b6ced2..82e64227ff 100644
--- a/english/aspose.cells/txtsaveoptions/sort_external_names/_index.md
+++ b/english/aspose.cells/txtsaveoptions/sort_external_names/_index.md
@@ -3,7 +3,7 @@ title: sort_external_names property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 210
+weight: 220
url: /aspose.cells/txtsaveoptions/sort_external_names/
is_root: false
---
diff --git a/english/aspose.cells/txtsaveoptions/sort_names/_index.md b/english/aspose.cells/txtsaveoptions/sort_names/_index.md
index ae7a5edd0b..efe61789b6 100644
--- a/english/aspose.cells/txtsaveoptions/sort_names/_index.md
+++ b/english/aspose.cells/txtsaveoptions/sort_names/_index.md
@@ -3,7 +3,7 @@ title: sort_names property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 220
+weight: 230
url: /aspose.cells/txtsaveoptions/sort_names/
is_root: false
---
diff --git a/english/aspose.cells/txtsaveoptions/trim_leading_blank_row_and_column/_index.md b/english/aspose.cells/txtsaveoptions/trim_leading_blank_row_and_column/_index.md
index e10b9acd13..c593e31c02 100644
--- a/english/aspose.cells/txtsaveoptions/trim_leading_blank_row_and_column/_index.md
+++ b/english/aspose.cells/txtsaveoptions/trim_leading_blank_row_and_column/_index.md
@@ -3,7 +3,7 @@ title: trim_leading_blank_row_and_column property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 230
+weight: 240
url: /aspose.cells/txtsaveoptions/trim_leading_blank_row_and_column/
is_root: false
---
diff --git a/english/aspose.cells/txtsaveoptions/trim_tailing_blank_cells/_index.md b/english/aspose.cells/txtsaveoptions/trim_tailing_blank_cells/_index.md
index 8c2f0ac8b2..938a399c07 100644
--- a/english/aspose.cells/txtsaveoptions/trim_tailing_blank_cells/_index.md
+++ b/english/aspose.cells/txtsaveoptions/trim_tailing_blank_cells/_index.md
@@ -3,7 +3,7 @@ title: trim_tailing_blank_cells property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 240
+weight: 250
url: /aspose.cells/txtsaveoptions/trim_tailing_blank_cells/
is_root: false
---
diff --git a/english/aspose.cells/txtsaveoptions/update_smart_art/_index.md b/english/aspose.cells/txtsaveoptions/update_smart_art/_index.md
index 34002727de..0359016b94 100644
--- a/english/aspose.cells/txtsaveoptions/update_smart_art/_index.md
+++ b/english/aspose.cells/txtsaveoptions/update_smart_art/_index.md
@@ -3,7 +3,7 @@ title: update_smart_art property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 250
+weight: 260
url: /aspose.cells/txtsaveoptions/update_smart_art/
is_root: false
---
diff --git a/english/aspose.cells/txtsaveoptions/validate_merged_areas/_index.md b/english/aspose.cells/txtsaveoptions/validate_merged_areas/_index.md
index 3d05544c6d..c185079719 100644
--- a/english/aspose.cells/txtsaveoptions/validate_merged_areas/_index.md
+++ b/english/aspose.cells/txtsaveoptions/validate_merged_areas/_index.md
@@ -3,7 +3,7 @@ title: validate_merged_areas property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 260
+weight: 270
url: /aspose.cells/txtsaveoptions/validate_merged_areas/
is_root: false
---
diff --git a/english/aspose.cells/txtsaveoptions/warning_callback/_index.md b/english/aspose.cells/txtsaveoptions/warning_callback/_index.md
index 058dd00f4d..471dbe1e90 100644
--- a/english/aspose.cells/txtsaveoptions/warning_callback/_index.md
+++ b/english/aspose.cells/txtsaveoptions/warning_callback/_index.md
@@ -3,7 +3,7 @@ title: warning_callback property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 270
+weight: 280
url: /aspose.cells/txtsaveoptions/warning_callback/
is_root: false
---
diff --git a/english/aspose.cells/txtvaluequotetype/_index.md b/english/aspose.cells/txtvaluequotetype/_index.md
index 0533ba0e8e..cc4cb5cec3 100644
--- a/english/aspose.cells/txtvaluequotetype/_index.md
+++ b/english/aspose.cells/txtvaluequotetype/_index.md
@@ -3,7 +3,7 @@ title: TxtValueQuoteType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2800
+weight: 2820
url: /aspose.cells/txtvaluequotetype/
is_root: false
---
diff --git a/english/aspose.cells/unionrange/_index.md b/english/aspose.cells/unionrange/_index.md
index aed12d383d..d20e804f43 100644
--- a/english/aspose.cells/unionrange/_index.md
+++ b/english/aspose.cells/unionrange/_index.md
@@ -3,7 +3,7 @@ title: UnionRange class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1660
+weight: 1670
url: /aspose.cells/unionrange/
is_root: false
---
diff --git a/english/aspose.cells/updatelinkstype/_index.md b/english/aspose.cells/updatelinkstype/_index.md
index 859dfc7ffc..b266de3b63 100644
--- a/english/aspose.cells/updatelinkstype/_index.md
+++ b/english/aspose.cells/updatelinkstype/_index.md
@@ -3,7 +3,7 @@ title: UpdateLinksType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2810
+weight: 2830
url: /aspose.cells/updatelinkstype/
is_root: false
---
diff --git a/english/aspose.cells/validation/_index.md b/english/aspose.cells/validation/_index.md
index 23d00d5f10..17e92204ff 100644
--- a/english/aspose.cells/validation/_index.md
+++ b/english/aspose.cells/validation/_index.md
@@ -3,7 +3,7 @@ title: Validation class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1670
+weight: 1680
url: /aspose.cells/validation/
is_root: false
---
diff --git a/english/aspose.cells/validationalerttype/_index.md b/english/aspose.cells/validationalerttype/_index.md
index 6195181390..920e5b4d6b 100644
--- a/english/aspose.cells/validationalerttype/_index.md
+++ b/english/aspose.cells/validationalerttype/_index.md
@@ -3,7 +3,7 @@ title: ValidationAlertType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2820
+weight: 2840
url: /aspose.cells/validationalerttype/
is_root: false
---
diff --git a/english/aspose.cells/validationcollection/_index.md b/english/aspose.cells/validationcollection/_index.md
index 3390e5139d..cfd720dc76 100644
--- a/english/aspose.cells/validationcollection/_index.md
+++ b/english/aspose.cells/validationcollection/_index.md
@@ -3,7 +3,7 @@ title: ValidationCollection class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1680
+weight: 1690
url: /aspose.cells/validationcollection/
is_root: false
---
diff --git a/english/aspose.cells/validationtype/_index.md b/english/aspose.cells/validationtype/_index.md
index 272e5151fe..f43ffa4539 100644
--- a/english/aspose.cells/validationtype/_index.md
+++ b/english/aspose.cells/validationtype/_index.md
@@ -3,7 +3,7 @@ title: ValidationType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2830
+weight: 2850
url: /aspose.cells/validationtype/
is_root: false
---
diff --git a/english/aspose.cells/verticalpagebreak/_index.md b/english/aspose.cells/verticalpagebreak/_index.md
index 412efd3134..525ae293ab 100644
--- a/english/aspose.cells/verticalpagebreak/_index.md
+++ b/english/aspose.cells/verticalpagebreak/_index.md
@@ -3,7 +3,7 @@ title: VerticalPageBreak class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1690
+weight: 1700
url: /aspose.cells/verticalpagebreak/
is_root: false
---
diff --git a/english/aspose.cells/verticalpagebreakcollection/_index.md b/english/aspose.cells/verticalpagebreakcollection/_index.md
index 2c0bba319a..c73d915852 100644
--- a/english/aspose.cells/verticalpagebreakcollection/_index.md
+++ b/english/aspose.cells/verticalpagebreakcollection/_index.md
@@ -3,7 +3,7 @@ title: VerticalPageBreakCollection class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1700
+weight: 1710
url: /aspose.cells/verticalpagebreakcollection/
is_root: false
---
diff --git a/english/aspose.cells/viewtype/_index.md b/english/aspose.cells/viewtype/_index.md
index 63e75f79c9..02c8f5917a 100644
--- a/english/aspose.cells/viewtype/_index.md
+++ b/english/aspose.cells/viewtype/_index.md
@@ -3,7 +3,7 @@ title: ViewType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2840
+weight: 2860
url: /aspose.cells/viewtype/
is_root: false
---
diff --git a/english/aspose.cells/visibilitytype/_index.md b/english/aspose.cells/visibilitytype/_index.md
index 3fd4efcb6f..59f3728a08 100644
--- a/english/aspose.cells/visibilitytype/_index.md
+++ b/english/aspose.cells/visibilitytype/_index.md
@@ -3,7 +3,7 @@ title: VisibilityType enumeration
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 2850
+weight: 2870
url: /aspose.cells/visibilitytype/
is_root: false
---
diff --git a/english/aspose.cells/warninginfo/_index.md b/english/aspose.cells/warninginfo/_index.md
index 5abfb64bc1..2b28eb2c5b 100644
--- a/english/aspose.cells/warninginfo/_index.md
+++ b/english/aspose.cells/warninginfo/_index.md
@@ -3,7 +3,7 @@ title: WarningInfo class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1710
+weight: 1720
url: /aspose.cells/warninginfo/
is_root: false
---
@@ -19,6 +19,7 @@ The WarningInfo type exposes the following members:
### Properties
| Property | Description |
| :- | :- |
+| [type](/cells/python-net/aspose.cells/warninginfo/type) | Get warning type. |
| [warning_type](/cells/python-net/aspose.cells/warninginfo/warning_type) | Get warning type. |
| [description](/cells/python-net/aspose.cells/warninginfo/description) | Get description of warning info. |
| [error_object](/cells/python-net/aspose.cells/warninginfo/error_object) | The error object. |
diff --git a/english/aspose.cells/warninginfo/type/_index.md b/english/aspose.cells/warninginfo/type/_index.md
new file mode 100644
index 0000000000..a195ed45c8
--- /dev/null
+++ b/english/aspose.cells/warninginfo/type/_index.md
@@ -0,0 +1,25 @@
+---
+title: type property
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 60
+url: /aspose.cells/warninginfo/type/
+is_root: false
+---
+
+## type property
+
+
+Get warning type.
+### Definition:
+```python
+@property
+def type(self):
+ ...
+```
+
+### See Also
+* module [`aspose.cells`](../../)
+* class [`ExceptionType`](/cells/python-net/aspose.cells/exceptiontype)
+* class [`WarningInfo`](/cells/python-net/aspose.cells/warninginfo)
diff --git a/english/aspose.cells/warninginfo/warning_type/_index.md b/english/aspose.cells/warninginfo/warning_type/_index.md
index 6e0baaebc3..5a0efbd214 100644
--- a/english/aspose.cells/warninginfo/warning_type/_index.md
+++ b/english/aspose.cells/warninginfo/warning_type/_index.md
@@ -3,7 +3,7 @@ title: warning_type property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 60
+weight: 70
url: /aspose.cells/warninginfo/warning_type/
is_root: false
---
@@ -12,6 +12,14 @@ is_root: false
Get warning type.
+
+### Remarks
+
+
+NOTE: This member is now obsolete. Instead,
+please use WarningInfo.Type property, instead.
+This property will be removed 12 months later since December 2024.
+Aspose apologizes for any inconvenience you may have experienced.
### Definition:
```python
@property
diff --git a/english/aspose.cells/warningtype/_index.md b/english/aspose.cells/warningtype/_index.md
index 5f81144d26..57de7310b5 100644
--- a/english/aspose.cells/warningtype/_index.md
+++ b/english/aspose.cells/warningtype/_index.md
@@ -1,37 +1,35 @@
----
-title: WarningType enumeration
-second_title: Aspose.Cells for Python via .NET API References
-description:
-type: docs
-weight: 2860
-url: /aspose.cells/warningtype/
-is_root: false
+---
+title: WarningType enumeration
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 2880
+url: /aspose.cells/warningtype/
+is_root: false
---
-
+
## WarningType enumeration
-
-WaringType
-
+
The WarningType type exposes the following members:
-
-### Fields
-| Field | Description |
-| :- | :- |
-| FONT_SUBSTITUTION | Font substitution warning type
when a font has not been found, this warning type can be get. |
-| DUPLICATE_DEFINED_NAME | Duplicate defined name is found in the file. |
-| UNSUPPORTED_FILE_FORMAT | Unsupported file format. |
-| INVALID_TEXT_OF_DEFINED_NAME | Invalid text of the defined name. |
-| INVALID_FONT_NAME | Invalid the font name. |
-| INVALID_AUTO_FILTER_RANGE | Invalid autofilter range. |
-| IO | The file is corrupted. |
-| LIMITATION | Out of MS Excel limitation error. |
-| INVALID_DATA | Invalid data. |
-| FORMULA | Invalid formula. |
-| INVALID_OPERATOR | Invalid operator. |
-
-
-
-### See Also
-* module [`aspose.cells`](..)
+
+### Fields
+| Field | Description |
+| :- | :- |
+| FONT_SUBSTITUTION | |
+| DUPLICATE_DEFINED_NAME | |
+| UNSUPPORTED_FILE_FORMAT | |
+| INVALID_TEXT_OF_DEFINED_NAME | |
+| INVALID_FONT_NAME | |
+| INVALID_AUTO_FILTER_RANGE | |
+| IO | |
+| LIMITATION | |
+| INVALID_DATA | |
+| FORMULA | |
+| INVALID_OPERATOR | |
+
+
+
+### See Also
+* module [`aspose.cells`](..)
diff --git a/english/aspose.cells/workbook/_index.md b/english/aspose.cells/workbook/_index.md
index d6622c6772..5628e8440b 100644
--- a/english/aspose.cells/workbook/_index.md
+++ b/english/aspose.cells/workbook/_index.md
@@ -3,7 +3,7 @@ title: Workbook class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1720
+weight: 1730
url: /aspose.cells/workbook/
is_root: false
---
diff --git a/english/aspose.cells/workbookdesigner/_index.md b/english/aspose.cells/workbookdesigner/_index.md
index 2a3f2fbd6b..dd6a103e8d 100644
--- a/english/aspose.cells/workbookdesigner/_index.md
+++ b/english/aspose.cells/workbookdesigner/_index.md
@@ -3,7 +3,7 @@ title: WorkbookDesigner class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1730
+weight: 1740
url: /aspose.cells/workbookdesigner/
is_root: false
---
diff --git a/english/aspose.cells/workbooksettings/_index.md b/english/aspose.cells/workbooksettings/_index.md
index 8ae0f5feed..3543444698 100644
--- a/english/aspose.cells/workbooksettings/_index.md
+++ b/english/aspose.cells/workbooksettings/_index.md
@@ -3,7 +3,7 @@ title: WorkbookSettings class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1740
+weight: 1750
url: /aspose.cells/workbooksettings/
is_root: false
---
diff --git a/english/aspose.cells/worksheet/_index.md b/english/aspose.cells/worksheet/_index.md
index d3f121cfb6..3afaad45ad 100644
--- a/english/aspose.cells/worksheet/_index.md
+++ b/english/aspose.cells/worksheet/_index.md
@@ -3,7 +3,7 @@ title: Worksheet class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1750
+weight: 1760
url: /aspose.cells/worksheet/
is_root: false
---
diff --git a/english/aspose.cells/worksheetcollection/_index.md b/english/aspose.cells/worksheetcollection/_index.md
index 6cbb764f9f..366229cebe 100644
--- a/english/aspose.cells/worksheetcollection/_index.md
+++ b/english/aspose.cells/worksheetcollection/_index.md
@@ -3,7 +3,7 @@ title: WorksheetCollection class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1760
+weight: 1770
url: /aspose.cells/worksheetcollection/
is_root: false
---
diff --git a/english/aspose.cells/writeprotection/_index.md b/english/aspose.cells/writeprotection/_index.md
index 1feb1eca0c..d17247c60c 100644
--- a/english/aspose.cells/writeprotection/_index.md
+++ b/english/aspose.cells/writeprotection/_index.md
@@ -3,7 +3,7 @@ title: WriteProtection class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1770
+weight: 1780
url: /aspose.cells/writeprotection/
is_root: false
---
diff --git a/english/aspose.cells/xlsbsaveoptions/_index.md b/english/aspose.cells/xlsbsaveoptions/_index.md
index 3288a92cfd..54bc0df725 100644
--- a/english/aspose.cells/xlsbsaveoptions/_index.md
+++ b/english/aspose.cells/xlsbsaveoptions/_index.md
@@ -3,7 +3,7 @@ title: XlsbSaveOptions class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1790
+weight: 1800
url: /aspose.cells/xlsbsaveoptions/
is_root: false
---
@@ -41,6 +41,7 @@ The XlsbSaveOptions type exposes the following members:
| [sort_external_names](/cells/python-net/aspose.cells/xlsbsaveoptions/sort_external_names) | Indicates whether sorting external defined names before saving file. |
| [refresh_chart_cache](/cells/python-net/aspose.cells/xlsbsaveoptions/refresh_chart_cache) | Indicates whether refreshing chart cache data |
| [warning_callback](/cells/python-net/aspose.cells/xlsbsaveoptions/warning_callback) | Gets or sets warning callback. |
+| [check_excel_restriction](/cells/python-net/aspose.cells/xlsbsaveoptions/check_excel_restriction) | Whether check restriction of excel file when user modify cells related objects.
For example, excel does not allow inputting string value longer than 32K.
When you input a value longer than 32K, it will be truncated. |
| [update_smart_art](/cells/python-net/aspose.cells/xlsbsaveoptions/update_smart_art) | Indicates whether updating smart art setting.
The default value is false. |
| [encrypt_document_properties](/cells/python-net/aspose.cells/xlsbsaveoptions/encrypt_document_properties) | Indicates whether encrypt document properties when saving as .xls file.
The default value is true. |
| [compression_type](/cells/python-net/aspose.cells/xlsbsaveoptions/compression_type) | Gets and sets the compression type for ooxml file. |
diff --git a/english/aspose.cells/xlsbsaveoptions/check_excel_restriction/_index.md b/english/aspose.cells/xlsbsaveoptions/check_excel_restriction/_index.md
new file mode 100644
index 0000000000..23b7872cdb
--- /dev/null
+++ b/english/aspose.cells/xlsbsaveoptions/check_excel_restriction/_index.md
@@ -0,0 +1,29 @@
+---
+title: check_excel_restriction property
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 40
+url: /aspose.cells/xlsbsaveoptions/check_excel_restriction/
+is_root: false
+---
+
+## check_excel_restriction property
+
+
+Whether check restriction of excel file when user modify cells related objects.
+For example, excel does not allow inputting string value longer than 32K.
+When you input a value longer than 32K, it will be truncated.
+### Definition:
+```python
+@property
+def check_excel_restriction(self):
+ ...
+@check_excel_restriction.setter
+def check_excel_restriction(self, value):
+ ...
+```
+
+### See Also
+* module [`aspose.cells`](../../)
+* class [`XlsbSaveOptions`](/cells/python-net/aspose.cells/xlsbsaveoptions)
diff --git a/english/aspose.cells/xlsbsaveoptions/clear_data/_index.md b/english/aspose.cells/xlsbsaveoptions/clear_data/_index.md
index 2e18b2dfae..480c1a30b4 100644
--- a/english/aspose.cells/xlsbsaveoptions/clear_data/_index.md
+++ b/english/aspose.cells/xlsbsaveoptions/clear_data/_index.md
@@ -3,7 +3,7 @@ title: clear_data property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 40
+weight: 50
url: /aspose.cells/xlsbsaveoptions/clear_data/
is_root: false
---
diff --git a/english/aspose.cells/xlsbsaveoptions/compression_type/_index.md b/english/aspose.cells/xlsbsaveoptions/compression_type/_index.md
index 3f54615f4e..c7c1165aaa 100644
--- a/english/aspose.cells/xlsbsaveoptions/compression_type/_index.md
+++ b/english/aspose.cells/xlsbsaveoptions/compression_type/_index.md
@@ -3,7 +3,7 @@ title: compression_type property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 50
+weight: 60
url: /aspose.cells/xlsbsaveoptions/compression_type/
is_root: false
---
diff --git a/english/aspose.cells/xlsbsaveoptions/create_directory/_index.md b/english/aspose.cells/xlsbsaveoptions/create_directory/_index.md
index d29136101e..f36097c914 100644
--- a/english/aspose.cells/xlsbsaveoptions/create_directory/_index.md
+++ b/english/aspose.cells/xlsbsaveoptions/create_directory/_index.md
@@ -3,7 +3,7 @@ title: create_directory property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 60
+weight: 70
url: /aspose.cells/xlsbsaveoptions/create_directory/
is_root: false
---
diff --git a/english/aspose.cells/xlsbsaveoptions/encrypt_document_properties/_index.md b/english/aspose.cells/xlsbsaveoptions/encrypt_document_properties/_index.md
index 1e49b52576..d067488666 100644
--- a/english/aspose.cells/xlsbsaveoptions/encrypt_document_properties/_index.md
+++ b/english/aspose.cells/xlsbsaveoptions/encrypt_document_properties/_index.md
@@ -3,7 +3,7 @@ title: encrypt_document_properties property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 70
+weight: 80
url: /aspose.cells/xlsbsaveoptions/encrypt_document_properties/
is_root: false
---
diff --git a/english/aspose.cells/xlsbsaveoptions/export_all_column_indexes/_index.md b/english/aspose.cells/xlsbsaveoptions/export_all_column_indexes/_index.md
index f13bc88888..6168ff3e34 100644
--- a/english/aspose.cells/xlsbsaveoptions/export_all_column_indexes/_index.md
+++ b/english/aspose.cells/xlsbsaveoptions/export_all_column_indexes/_index.md
@@ -3,7 +3,7 @@ title: export_all_column_indexes property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 80
+weight: 90
url: /aspose.cells/xlsbsaveoptions/export_all_column_indexes/
is_root: false
---
diff --git a/english/aspose.cells/xlsbsaveoptions/light_cells_data_provider/_index.md b/english/aspose.cells/xlsbsaveoptions/light_cells_data_provider/_index.md
index 291927fd58..c94f975be7 100644
--- a/english/aspose.cells/xlsbsaveoptions/light_cells_data_provider/_index.md
+++ b/english/aspose.cells/xlsbsaveoptions/light_cells_data_provider/_index.md
@@ -3,7 +3,7 @@ title: light_cells_data_provider property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 90
+weight: 100
url: /aspose.cells/xlsbsaveoptions/light_cells_data_provider/
is_root: false
---
diff --git a/english/aspose.cells/xlsbsaveoptions/merge_areas/_index.md b/english/aspose.cells/xlsbsaveoptions/merge_areas/_index.md
index 5a78a54f46..7793b674ad 100644
--- a/english/aspose.cells/xlsbsaveoptions/merge_areas/_index.md
+++ b/english/aspose.cells/xlsbsaveoptions/merge_areas/_index.md
@@ -3,7 +3,7 @@ title: merge_areas property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 100
+weight: 110
url: /aspose.cells/xlsbsaveoptions/merge_areas/
is_root: false
---
diff --git a/english/aspose.cells/xlsbsaveoptions/refresh_chart_cache/_index.md b/english/aspose.cells/xlsbsaveoptions/refresh_chart_cache/_index.md
index 0765efefcf..564c7c7c89 100644
--- a/english/aspose.cells/xlsbsaveoptions/refresh_chart_cache/_index.md
+++ b/english/aspose.cells/xlsbsaveoptions/refresh_chart_cache/_index.md
@@ -3,7 +3,7 @@ title: refresh_chart_cache property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 110
+weight: 120
url: /aspose.cells/xlsbsaveoptions/refresh_chart_cache/
is_root: false
---
diff --git a/english/aspose.cells/xlsbsaveoptions/save_format/_index.md b/english/aspose.cells/xlsbsaveoptions/save_format/_index.md
index 79e6057266..cae6714454 100644
--- a/english/aspose.cells/xlsbsaveoptions/save_format/_index.md
+++ b/english/aspose.cells/xlsbsaveoptions/save_format/_index.md
@@ -3,7 +3,7 @@ title: save_format property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 120
+weight: 130
url: /aspose.cells/xlsbsaveoptions/save_format/
is_root: false
---
diff --git a/english/aspose.cells/xlsbsaveoptions/sort_external_names/_index.md b/english/aspose.cells/xlsbsaveoptions/sort_external_names/_index.md
index 0e651d59c9..076684b6da 100644
--- a/english/aspose.cells/xlsbsaveoptions/sort_external_names/_index.md
+++ b/english/aspose.cells/xlsbsaveoptions/sort_external_names/_index.md
@@ -3,7 +3,7 @@ title: sort_external_names property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 130
+weight: 140
url: /aspose.cells/xlsbsaveoptions/sort_external_names/
is_root: false
---
diff --git a/english/aspose.cells/xlsbsaveoptions/sort_names/_index.md b/english/aspose.cells/xlsbsaveoptions/sort_names/_index.md
index ee6c6ad6eb..c3f3c9066e 100644
--- a/english/aspose.cells/xlsbsaveoptions/sort_names/_index.md
+++ b/english/aspose.cells/xlsbsaveoptions/sort_names/_index.md
@@ -3,7 +3,7 @@ title: sort_names property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 140
+weight: 150
url: /aspose.cells/xlsbsaveoptions/sort_names/
is_root: false
---
diff --git a/english/aspose.cells/xlsbsaveoptions/update_smart_art/_index.md b/english/aspose.cells/xlsbsaveoptions/update_smart_art/_index.md
index aef8c870ce..fdde03b7e3 100644
--- a/english/aspose.cells/xlsbsaveoptions/update_smart_art/_index.md
+++ b/english/aspose.cells/xlsbsaveoptions/update_smart_art/_index.md
@@ -3,7 +3,7 @@ title: update_smart_art property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 150
+weight: 160
url: /aspose.cells/xlsbsaveoptions/update_smart_art/
is_root: false
---
diff --git a/english/aspose.cells/xlsbsaveoptions/validate_merged_areas/_index.md b/english/aspose.cells/xlsbsaveoptions/validate_merged_areas/_index.md
index 384b1072de..c02d986b73 100644
--- a/english/aspose.cells/xlsbsaveoptions/validate_merged_areas/_index.md
+++ b/english/aspose.cells/xlsbsaveoptions/validate_merged_areas/_index.md
@@ -3,7 +3,7 @@ title: validate_merged_areas property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 160
+weight: 170
url: /aspose.cells/xlsbsaveoptions/validate_merged_areas/
is_root: false
---
diff --git a/english/aspose.cells/xlsbsaveoptions/warning_callback/_index.md b/english/aspose.cells/xlsbsaveoptions/warning_callback/_index.md
index 87388fcea5..019d9c2a4b 100644
--- a/english/aspose.cells/xlsbsaveoptions/warning_callback/_index.md
+++ b/english/aspose.cells/xlsbsaveoptions/warning_callback/_index.md
@@ -3,7 +3,7 @@ title: warning_callback property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 170
+weight: 180
url: /aspose.cells/xlsbsaveoptions/warning_callback/
is_root: false
---
diff --git a/english/aspose.cells/xlssaveoptions/_index.md b/english/aspose.cells/xlssaveoptions/_index.md
index bd369037bf..ced15617b9 100644
--- a/english/aspose.cells/xlssaveoptions/_index.md
+++ b/english/aspose.cells/xlssaveoptions/_index.md
@@ -3,7 +3,7 @@ title: XlsSaveOptions class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1780
+weight: 1790
url: /aspose.cells/xlssaveoptions/
is_root: false
---
@@ -41,6 +41,7 @@ The XlsSaveOptions type exposes the following members:
| [sort_external_names](/cells/python-net/aspose.cells/xlssaveoptions/sort_external_names) | Indicates whether sorting external defined names before saving file. |
| [refresh_chart_cache](/cells/python-net/aspose.cells/xlssaveoptions/refresh_chart_cache) | Indicates whether refreshing chart cache data |
| [warning_callback](/cells/python-net/aspose.cells/xlssaveoptions/warning_callback) | Gets or sets warning callback. |
+| [check_excel_restriction](/cells/python-net/aspose.cells/xlssaveoptions/check_excel_restriction) | Whether check restriction of excel file when user modify cells related objects.
For example, excel does not allow inputting string value longer than 32K.
When you input a value longer than 32K, it will be truncated. |
| [update_smart_art](/cells/python-net/aspose.cells/xlssaveoptions/update_smart_art) | Indicates whether updating smart art setting.
The default value is false. |
| [encrypt_document_properties](/cells/python-net/aspose.cells/xlssaveoptions/encrypt_document_properties) | Indicates whether encrypt document properties when saving as .xls file.
The default value is true. |
| [light_cells_data_provider](/cells/python-net/aspose.cells/xlssaveoptions/light_cells_data_provider) | The data provider for saving workbook in light mode. |
diff --git a/english/aspose.cells/xlssaveoptions/check_excel_restriction/_index.md b/english/aspose.cells/xlssaveoptions/check_excel_restriction/_index.md
new file mode 100644
index 0000000000..4f79889ec2
--- /dev/null
+++ b/english/aspose.cells/xlssaveoptions/check_excel_restriction/_index.md
@@ -0,0 +1,29 @@
+---
+title: check_excel_restriction property
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 40
+url: /aspose.cells/xlssaveoptions/check_excel_restriction/
+is_root: false
+---
+
+## check_excel_restriction property
+
+
+Whether check restriction of excel file when user modify cells related objects.
+For example, excel does not allow inputting string value longer than 32K.
+When you input a value longer than 32K, it will be truncated.
+### Definition:
+```python
+@property
+def check_excel_restriction(self):
+ ...
+@check_excel_restriction.setter
+def check_excel_restriction(self, value):
+ ...
+```
+
+### See Also
+* module [`aspose.cells`](../../)
+* class [`XlsSaveOptions`](/cells/python-net/aspose.cells/xlssaveoptions)
diff --git a/english/aspose.cells/xlssaveoptions/clear_data/_index.md b/english/aspose.cells/xlssaveoptions/clear_data/_index.md
index 36256cf2ce..27d96132e0 100644
--- a/english/aspose.cells/xlssaveoptions/clear_data/_index.md
+++ b/english/aspose.cells/xlssaveoptions/clear_data/_index.md
@@ -3,7 +3,7 @@ title: clear_data property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 40
+weight: 50
url: /aspose.cells/xlssaveoptions/clear_data/
is_root: false
---
diff --git a/english/aspose.cells/xlssaveoptions/create_directory/_index.md b/english/aspose.cells/xlssaveoptions/create_directory/_index.md
index 00266bd705..aec14e25bf 100644
--- a/english/aspose.cells/xlssaveoptions/create_directory/_index.md
+++ b/english/aspose.cells/xlssaveoptions/create_directory/_index.md
@@ -3,7 +3,7 @@ title: create_directory property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 50
+weight: 60
url: /aspose.cells/xlssaveoptions/create_directory/
is_root: false
---
diff --git a/english/aspose.cells/xlssaveoptions/encrypt_document_properties/_index.md b/english/aspose.cells/xlssaveoptions/encrypt_document_properties/_index.md
index cfb7a1ab57..4c7dac5d1e 100644
--- a/english/aspose.cells/xlssaveoptions/encrypt_document_properties/_index.md
+++ b/english/aspose.cells/xlssaveoptions/encrypt_document_properties/_index.md
@@ -3,7 +3,7 @@ title: encrypt_document_properties property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 60
+weight: 70
url: /aspose.cells/xlssaveoptions/encrypt_document_properties/
is_root: false
---
diff --git a/english/aspose.cells/xlssaveoptions/is_template/_index.md b/english/aspose.cells/xlssaveoptions/is_template/_index.md
index a92bdeb3a8..26947dc3ef 100644
--- a/english/aspose.cells/xlssaveoptions/is_template/_index.md
+++ b/english/aspose.cells/xlssaveoptions/is_template/_index.md
@@ -3,7 +3,7 @@ title: is_template property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 70
+weight: 80
url: /aspose.cells/xlssaveoptions/is_template/
is_root: false
---
diff --git a/english/aspose.cells/xlssaveoptions/light_cells_data_provider/_index.md b/english/aspose.cells/xlssaveoptions/light_cells_data_provider/_index.md
index 1ae0b69f7d..113004225b 100644
--- a/english/aspose.cells/xlssaveoptions/light_cells_data_provider/_index.md
+++ b/english/aspose.cells/xlssaveoptions/light_cells_data_provider/_index.md
@@ -3,7 +3,7 @@ title: light_cells_data_provider property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 80
+weight: 90
url: /aspose.cells/xlssaveoptions/light_cells_data_provider/
is_root: false
---
diff --git a/english/aspose.cells/xlssaveoptions/match_color/_index.md b/english/aspose.cells/xlssaveoptions/match_color/_index.md
index de1946517b..478986b675 100644
--- a/english/aspose.cells/xlssaveoptions/match_color/_index.md
+++ b/english/aspose.cells/xlssaveoptions/match_color/_index.md
@@ -3,7 +3,7 @@ title: match_color property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 90
+weight: 100
url: /aspose.cells/xlssaveoptions/match_color/
is_root: false
---
diff --git a/english/aspose.cells/xlssaveoptions/merge_areas/_index.md b/english/aspose.cells/xlssaveoptions/merge_areas/_index.md
index ed3293307b..ae899c8107 100644
--- a/english/aspose.cells/xlssaveoptions/merge_areas/_index.md
+++ b/english/aspose.cells/xlssaveoptions/merge_areas/_index.md
@@ -3,7 +3,7 @@ title: merge_areas property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 100
+weight: 110
url: /aspose.cells/xlssaveoptions/merge_areas/
is_root: false
---
diff --git a/english/aspose.cells/xlssaveoptions/refresh_chart_cache/_index.md b/english/aspose.cells/xlssaveoptions/refresh_chart_cache/_index.md
index dee9496b3a..be42c4d7d7 100644
--- a/english/aspose.cells/xlssaveoptions/refresh_chart_cache/_index.md
+++ b/english/aspose.cells/xlssaveoptions/refresh_chart_cache/_index.md
@@ -3,7 +3,7 @@ title: refresh_chart_cache property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 110
+weight: 120
url: /aspose.cells/xlssaveoptions/refresh_chart_cache/
is_root: false
---
diff --git a/english/aspose.cells/xlssaveoptions/save_format/_index.md b/english/aspose.cells/xlssaveoptions/save_format/_index.md
index 3f9a555f51..b3089ed035 100644
--- a/english/aspose.cells/xlssaveoptions/save_format/_index.md
+++ b/english/aspose.cells/xlssaveoptions/save_format/_index.md
@@ -3,7 +3,7 @@ title: save_format property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 120
+weight: 130
url: /aspose.cells/xlssaveoptions/save_format/
is_root: false
---
diff --git a/english/aspose.cells/xlssaveoptions/sort_external_names/_index.md b/english/aspose.cells/xlssaveoptions/sort_external_names/_index.md
index b70fa6737d..7cfa6b430a 100644
--- a/english/aspose.cells/xlssaveoptions/sort_external_names/_index.md
+++ b/english/aspose.cells/xlssaveoptions/sort_external_names/_index.md
@@ -3,7 +3,7 @@ title: sort_external_names property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 130
+weight: 140
url: /aspose.cells/xlssaveoptions/sort_external_names/
is_root: false
---
diff --git a/english/aspose.cells/xlssaveoptions/sort_names/_index.md b/english/aspose.cells/xlssaveoptions/sort_names/_index.md
index ff30e1f1ed..a10369eb4c 100644
--- a/english/aspose.cells/xlssaveoptions/sort_names/_index.md
+++ b/english/aspose.cells/xlssaveoptions/sort_names/_index.md
@@ -3,7 +3,7 @@ title: sort_names property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 140
+weight: 150
url: /aspose.cells/xlssaveoptions/sort_names/
is_root: false
---
diff --git a/english/aspose.cells/xlssaveoptions/update_smart_art/_index.md b/english/aspose.cells/xlssaveoptions/update_smart_art/_index.md
index 28c1474523..8f9df42958 100644
--- a/english/aspose.cells/xlssaveoptions/update_smart_art/_index.md
+++ b/english/aspose.cells/xlssaveoptions/update_smart_art/_index.md
@@ -3,7 +3,7 @@ title: update_smart_art property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 150
+weight: 160
url: /aspose.cells/xlssaveoptions/update_smart_art/
is_root: false
---
diff --git a/english/aspose.cells/xlssaveoptions/validate_merged_areas/_index.md b/english/aspose.cells/xlssaveoptions/validate_merged_areas/_index.md
index 413583004a..6b59832f9d 100644
--- a/english/aspose.cells/xlssaveoptions/validate_merged_areas/_index.md
+++ b/english/aspose.cells/xlssaveoptions/validate_merged_areas/_index.md
@@ -3,7 +3,7 @@ title: validate_merged_areas property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 160
+weight: 170
url: /aspose.cells/xlssaveoptions/validate_merged_areas/
is_root: false
---
diff --git a/english/aspose.cells/xlssaveoptions/warning_callback/_index.md b/english/aspose.cells/xlssaveoptions/warning_callback/_index.md
index ac2109823b..5be0431247 100644
--- a/english/aspose.cells/xlssaveoptions/warning_callback/_index.md
+++ b/english/aspose.cells/xlssaveoptions/warning_callback/_index.md
@@ -3,7 +3,7 @@ title: warning_callback property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 170
+weight: 180
url: /aspose.cells/xlssaveoptions/warning_callback/
is_root: false
---
diff --git a/english/aspose.cells/xlssaveoptions/wps_compatibility/_index.md b/english/aspose.cells/xlssaveoptions/wps_compatibility/_index.md
index 8043aac27c..27befde63c 100644
--- a/english/aspose.cells/xlssaveoptions/wps_compatibility/_index.md
+++ b/english/aspose.cells/xlssaveoptions/wps_compatibility/_index.md
@@ -3,7 +3,7 @@ title: wps_compatibility property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 180
+weight: 190
url: /aspose.cells/xlssaveoptions/wps_compatibility/
is_root: false
---
diff --git a/english/aspose.cells/xmlcolumnproperty/_index.md b/english/aspose.cells/xmlcolumnproperty/_index.md
index f8ac6b0af2..0dd45bc00d 100644
--- a/english/aspose.cells/xmlcolumnproperty/_index.md
+++ b/english/aspose.cells/xmlcolumnproperty/_index.md
@@ -3,7 +3,7 @@ title: XmlColumnProperty class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1800
+weight: 1810
url: /aspose.cells/xmlcolumnproperty/
is_root: false
---
diff --git a/english/aspose.cells/xmldatabinding/_index.md b/english/aspose.cells/xmldatabinding/_index.md
index fbb375c01d..b731d65d38 100644
--- a/english/aspose.cells/xmldatabinding/_index.md
+++ b/english/aspose.cells/xmldatabinding/_index.md
@@ -3,7 +3,7 @@ title: XmlDataBinding class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1810
+weight: 1820
url: /aspose.cells/xmldatabinding/
is_root: false
---
diff --git a/english/aspose.cells/xmlloadoptions/_index.md b/english/aspose.cells/xmlloadoptions/_index.md
index 61443822b8..9661c9925c 100644
--- a/english/aspose.cells/xmlloadoptions/_index.md
+++ b/english/aspose.cells/xmlloadoptions/_index.md
@@ -3,7 +3,7 @@ title: XmlLoadOptions class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1820
+weight: 1830
url: /aspose.cells/xmlloadoptions/
is_root: false
---
diff --git a/english/aspose.cells/xmlmap/_index.md b/english/aspose.cells/xmlmap/_index.md
index 93cb566e87..52aecbba9a 100644
--- a/english/aspose.cells/xmlmap/_index.md
+++ b/english/aspose.cells/xmlmap/_index.md
@@ -3,7 +3,7 @@ title: XmlMap class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1830
+weight: 1840
url: /aspose.cells/xmlmap/
is_root: false
---
diff --git a/english/aspose.cells/xmlmapcollection/_index.md b/english/aspose.cells/xmlmapcollection/_index.md
index 0edc00773d..d62031e9ca 100644
--- a/english/aspose.cells/xmlmapcollection/_index.md
+++ b/english/aspose.cells/xmlmapcollection/_index.md
@@ -3,7 +3,7 @@ title: XmlMapCollection class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1840
+weight: 1850
url: /aspose.cells/xmlmapcollection/
is_root: false
---
diff --git a/english/aspose.cells/xmlsaveoptions/_index.md b/english/aspose.cells/xmlsaveoptions/_index.md
index a9a08f4146..88b32bf2fd 100644
--- a/english/aspose.cells/xmlsaveoptions/_index.md
+++ b/english/aspose.cells/xmlsaveoptions/_index.md
@@ -3,7 +3,7 @@ title: XmlSaveOptions class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1850
+weight: 1860
url: /aspose.cells/xmlsaveoptions/
is_root: false
---
@@ -40,6 +40,7 @@ The XmlSaveOptions type exposes the following members:
| [sort_external_names](/cells/python-net/aspose.cells/xmlsaveoptions/sort_external_names) | Indicates whether sorting external defined names before saving file. |
| [refresh_chart_cache](/cells/python-net/aspose.cells/xmlsaveoptions/refresh_chart_cache) | Indicates whether refreshing chart cache data |
| [warning_callback](/cells/python-net/aspose.cells/xmlsaveoptions/warning_callback) | Gets or sets warning callback. |
+| [check_excel_restriction](/cells/python-net/aspose.cells/xmlsaveoptions/check_excel_restriction) | Whether check restriction of excel file when user modify cells related objects.
For example, excel does not allow inputting string value longer than 32K.
When you input a value longer than 32K, it will be truncated. |
| [update_smart_art](/cells/python-net/aspose.cells/xmlsaveoptions/update_smart_art) | Indicates whether updating smart art setting.
The default value is false. |
| [encrypt_document_properties](/cells/python-net/aspose.cells/xmlsaveoptions/encrypt_document_properties) | Indicates whether encrypt document properties when saving as .xls file.
The default value is true. |
| [sheet_indexes](/cells/python-net/aspose.cells/xmlsaveoptions/sheet_indexes) | Represents the indexes of exported sheets. |
diff --git a/english/aspose.cells/xmlsaveoptions/check_excel_restriction/_index.md b/english/aspose.cells/xmlsaveoptions/check_excel_restriction/_index.md
new file mode 100644
index 0000000000..388f20d178
--- /dev/null
+++ b/english/aspose.cells/xmlsaveoptions/check_excel_restriction/_index.md
@@ -0,0 +1,29 @@
+---
+title: check_excel_restriction property
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 40
+url: /aspose.cells/xmlsaveoptions/check_excel_restriction/
+is_root: false
+---
+
+## check_excel_restriction property
+
+
+Whether check restriction of excel file when user modify cells related objects.
+For example, excel does not allow inputting string value longer than 32K.
+When you input a value longer than 32K, it will be truncated.
+### Definition:
+```python
+@property
+def check_excel_restriction(self):
+ ...
+@check_excel_restriction.setter
+def check_excel_restriction(self, value):
+ ...
+```
+
+### See Also
+* module [`aspose.cells`](../../)
+* class [`XmlSaveOptions`](/cells/python-net/aspose.cells/xmlsaveoptions)
diff --git a/english/aspose.cells/xmlsaveoptions/clear_data/_index.md b/english/aspose.cells/xmlsaveoptions/clear_data/_index.md
index ea53fe7ee2..b10fc63be1 100644
--- a/english/aspose.cells/xmlsaveoptions/clear_data/_index.md
+++ b/english/aspose.cells/xmlsaveoptions/clear_data/_index.md
@@ -3,7 +3,7 @@ title: clear_data property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 40
+weight: 50
url: /aspose.cells/xmlsaveoptions/clear_data/
is_root: false
---
diff --git a/english/aspose.cells/xmlsaveoptions/create_directory/_index.md b/english/aspose.cells/xmlsaveoptions/create_directory/_index.md
index 9cf0e5ebd4..5e229366dd 100644
--- a/english/aspose.cells/xmlsaveoptions/create_directory/_index.md
+++ b/english/aspose.cells/xmlsaveoptions/create_directory/_index.md
@@ -3,7 +3,7 @@ title: create_directory property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 50
+weight: 60
url: /aspose.cells/xmlsaveoptions/create_directory/
is_root: false
---
diff --git a/english/aspose.cells/xmlsaveoptions/data_as_attribute/_index.md b/english/aspose.cells/xmlsaveoptions/data_as_attribute/_index.md
index 46a283e4b7..02965f3729 100644
--- a/english/aspose.cells/xmlsaveoptions/data_as_attribute/_index.md
+++ b/english/aspose.cells/xmlsaveoptions/data_as_attribute/_index.md
@@ -3,7 +3,7 @@ title: data_as_attribute property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 60
+weight: 70
url: /aspose.cells/xmlsaveoptions/data_as_attribute/
is_root: false
---
diff --git a/english/aspose.cells/xmlsaveoptions/encrypt_document_properties/_index.md b/english/aspose.cells/xmlsaveoptions/encrypt_document_properties/_index.md
index 2781ef8b73..5f65524380 100644
--- a/english/aspose.cells/xmlsaveoptions/encrypt_document_properties/_index.md
+++ b/english/aspose.cells/xmlsaveoptions/encrypt_document_properties/_index.md
@@ -3,7 +3,7 @@ title: encrypt_document_properties property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 70
+weight: 80
url: /aspose.cells/xmlsaveoptions/encrypt_document_properties/
is_root: false
---
diff --git a/english/aspose.cells/xmlsaveoptions/export_area/_index.md b/english/aspose.cells/xmlsaveoptions/export_area/_index.md
index f0413aa9d2..7559371728 100644
--- a/english/aspose.cells/xmlsaveoptions/export_area/_index.md
+++ b/english/aspose.cells/xmlsaveoptions/export_area/_index.md
@@ -3,7 +3,7 @@ title: export_area property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 80
+weight: 90
url: /aspose.cells/xmlsaveoptions/export_area/
is_root: false
---
diff --git a/english/aspose.cells/xmlsaveoptions/has_header_row/_index.md b/english/aspose.cells/xmlsaveoptions/has_header_row/_index.md
index accd0f3eda..dbd0462883 100644
--- a/english/aspose.cells/xmlsaveoptions/has_header_row/_index.md
+++ b/english/aspose.cells/xmlsaveoptions/has_header_row/_index.md
@@ -3,7 +3,7 @@ title: has_header_row property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 90
+weight: 100
url: /aspose.cells/xmlsaveoptions/has_header_row/
is_root: false
---
diff --git a/english/aspose.cells/xmlsaveoptions/merge_areas/_index.md b/english/aspose.cells/xmlsaveoptions/merge_areas/_index.md
index 5267878687..991b7ea9b5 100644
--- a/english/aspose.cells/xmlsaveoptions/merge_areas/_index.md
+++ b/english/aspose.cells/xmlsaveoptions/merge_areas/_index.md
@@ -3,7 +3,7 @@ title: merge_areas property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 100
+weight: 110
url: /aspose.cells/xmlsaveoptions/merge_areas/
is_root: false
---
diff --git a/english/aspose.cells/xmlsaveoptions/refresh_chart_cache/_index.md b/english/aspose.cells/xmlsaveoptions/refresh_chart_cache/_index.md
index 862859985e..5049f1222d 100644
--- a/english/aspose.cells/xmlsaveoptions/refresh_chart_cache/_index.md
+++ b/english/aspose.cells/xmlsaveoptions/refresh_chart_cache/_index.md
@@ -3,7 +3,7 @@ title: refresh_chart_cache property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 110
+weight: 120
url: /aspose.cells/xmlsaveoptions/refresh_chart_cache/
is_root: false
---
diff --git a/english/aspose.cells/xmlsaveoptions/save_format/_index.md b/english/aspose.cells/xmlsaveoptions/save_format/_index.md
index ef62fade4c..30018d2664 100644
--- a/english/aspose.cells/xmlsaveoptions/save_format/_index.md
+++ b/english/aspose.cells/xmlsaveoptions/save_format/_index.md
@@ -3,7 +3,7 @@ title: save_format property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 120
+weight: 130
url: /aspose.cells/xmlsaveoptions/save_format/
is_root: false
---
diff --git a/english/aspose.cells/xmlsaveoptions/sheet_indexes/_index.md b/english/aspose.cells/xmlsaveoptions/sheet_indexes/_index.md
index 806f05bfbf..b2d96f9986 100644
--- a/english/aspose.cells/xmlsaveoptions/sheet_indexes/_index.md
+++ b/english/aspose.cells/xmlsaveoptions/sheet_indexes/_index.md
@@ -3,7 +3,7 @@ title: sheet_indexes property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 130
+weight: 140
url: /aspose.cells/xmlsaveoptions/sheet_indexes/
is_root: false
---
diff --git a/english/aspose.cells/xmlsaveoptions/sheet_name_as_element_name/_index.md b/english/aspose.cells/xmlsaveoptions/sheet_name_as_element_name/_index.md
index ecbb66ffee..6f88da53b4 100644
--- a/english/aspose.cells/xmlsaveoptions/sheet_name_as_element_name/_index.md
+++ b/english/aspose.cells/xmlsaveoptions/sheet_name_as_element_name/_index.md
@@ -3,7 +3,7 @@ title: sheet_name_as_element_name property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 140
+weight: 150
url: /aspose.cells/xmlsaveoptions/sheet_name_as_element_name/
is_root: false
---
diff --git a/english/aspose.cells/xmlsaveoptions/sort_external_names/_index.md b/english/aspose.cells/xmlsaveoptions/sort_external_names/_index.md
index 0e74c94054..bc467a4081 100644
--- a/english/aspose.cells/xmlsaveoptions/sort_external_names/_index.md
+++ b/english/aspose.cells/xmlsaveoptions/sort_external_names/_index.md
@@ -3,7 +3,7 @@ title: sort_external_names property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 150
+weight: 160
url: /aspose.cells/xmlsaveoptions/sort_external_names/
is_root: false
---
diff --git a/english/aspose.cells/xmlsaveoptions/sort_names/_index.md b/english/aspose.cells/xmlsaveoptions/sort_names/_index.md
index c69a43ce9e..fb42e5c4a7 100644
--- a/english/aspose.cells/xmlsaveoptions/sort_names/_index.md
+++ b/english/aspose.cells/xmlsaveoptions/sort_names/_index.md
@@ -3,7 +3,7 @@ title: sort_names property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 160
+weight: 170
url: /aspose.cells/xmlsaveoptions/sort_names/
is_root: false
---
diff --git a/english/aspose.cells/xmlsaveoptions/update_smart_art/_index.md b/english/aspose.cells/xmlsaveoptions/update_smart_art/_index.md
index 6f8a739d93..7fb57130be 100644
--- a/english/aspose.cells/xmlsaveoptions/update_smart_art/_index.md
+++ b/english/aspose.cells/xmlsaveoptions/update_smart_art/_index.md
@@ -3,7 +3,7 @@ title: update_smart_art property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 170
+weight: 180
url: /aspose.cells/xmlsaveoptions/update_smart_art/
is_root: false
---
diff --git a/english/aspose.cells/xmlsaveoptions/validate_merged_areas/_index.md b/english/aspose.cells/xmlsaveoptions/validate_merged_areas/_index.md
index bf8ec164ac..de5855d9de 100644
--- a/english/aspose.cells/xmlsaveoptions/validate_merged_areas/_index.md
+++ b/english/aspose.cells/xmlsaveoptions/validate_merged_areas/_index.md
@@ -3,7 +3,7 @@ title: validate_merged_areas property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 180
+weight: 190
url: /aspose.cells/xmlsaveoptions/validate_merged_areas/
is_root: false
---
diff --git a/english/aspose.cells/xmlsaveoptions/warning_callback/_index.md b/english/aspose.cells/xmlsaveoptions/warning_callback/_index.md
index 6be2ede321..e53754c2a2 100644
--- a/english/aspose.cells/xmlsaveoptions/warning_callback/_index.md
+++ b/english/aspose.cells/xmlsaveoptions/warning_callback/_index.md
@@ -3,7 +3,7 @@ title: warning_callback property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 190
+weight: 200
url: /aspose.cells/xmlsaveoptions/warning_callback/
is_root: false
---
diff --git a/english/aspose.cells/xmlsaveoptions/xml_map_name/_index.md b/english/aspose.cells/xmlsaveoptions/xml_map_name/_index.md
index f769f7eff2..fdebe01504 100644
--- a/english/aspose.cells/xmlsaveoptions/xml_map_name/_index.md
+++ b/english/aspose.cells/xmlsaveoptions/xml_map_name/_index.md
@@ -3,7 +3,7 @@ title: xml_map_name property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 200
+weight: 210
url: /aspose.cells/xmlsaveoptions/xml_map_name/
is_root: false
---
diff --git a/english/aspose.cells/xpssaveoptions/_index.md b/english/aspose.cells/xpssaveoptions/_index.md
index 3b5cd78d89..bd13f29376 100644
--- a/english/aspose.cells/xpssaveoptions/_index.md
+++ b/english/aspose.cells/xpssaveoptions/_index.md
@@ -3,7 +3,7 @@ title: XpsSaveOptions class
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 1860
+weight: 1870
url: /aspose.cells/xpssaveoptions/
is_root: false
---
@@ -42,6 +42,7 @@ The XpsSaveOptions type exposes the following members:
| [sort_external_names](/cells/python-net/aspose.cells/xpssaveoptions/sort_external_names) | Indicates whether sorting external defined names before saving file. |
| [refresh_chart_cache](/cells/python-net/aspose.cells/xpssaveoptions/refresh_chart_cache) | Indicates whether refreshing chart cache data |
| [warning_callback](/cells/python-net/aspose.cells/xpssaveoptions/warning_callback) | Gets or sets warning callback. |
+| [check_excel_restriction](/cells/python-net/aspose.cells/xpssaveoptions/check_excel_restriction) | Whether check restriction of excel file when user modify cells related objects.
For example, excel does not allow inputting string value longer than 32K.
When you input a value longer than 32K, it will be truncated. |
| [update_smart_art](/cells/python-net/aspose.cells/xpssaveoptions/update_smart_art) | Indicates whether updating smart art setting.
The default value is false. |
| [encrypt_document_properties](/cells/python-net/aspose.cells/xpssaveoptions/encrypt_document_properties) | Indicates whether encrypt document properties when saving as .xls file.
The default value is true. |
| [default_font](/cells/python-net/aspose.cells/xpssaveoptions/default_font) | When characters in the Excel are Unicode and not be set with correct font in cell style,
They may appear as block in pdf,image.
Set the DefaultFont such as MingLiu or MS Gothic to show these characters.
If this property is not set, Aspose.Cells will use system default font to show these unicode characters. |
diff --git a/english/aspose.cells/xpssaveoptions/check_excel_restriction/_index.md b/english/aspose.cells/xpssaveoptions/check_excel_restriction/_index.md
new file mode 100644
index 0000000000..f28488952e
--- /dev/null
+++ b/english/aspose.cells/xpssaveoptions/check_excel_restriction/_index.md
@@ -0,0 +1,29 @@
+---
+title: check_excel_restriction property
+second_title: Aspose.Cells for Python via .NET API References
+description:
+type: docs
+weight: 50
+url: /aspose.cells/xpssaveoptions/check_excel_restriction/
+is_root: false
+---
+
+## check_excel_restriction property
+
+
+Whether check restriction of excel file when user modify cells related objects.
+For example, excel does not allow inputting string value longer than 32K.
+When you input a value longer than 32K, it will be truncated.
+### Definition:
+```python
+@property
+def check_excel_restriction(self):
+ ...
+@check_excel_restriction.setter
+def check_excel_restriction(self, value):
+ ...
+```
+
+### See Also
+* module [`aspose.cells`](../../)
+* class [`XpsSaveOptions`](/cells/python-net/aspose.cells/xpssaveoptions)
diff --git a/english/aspose.cells/xpssaveoptions/check_font_compatibility/_index.md b/english/aspose.cells/xpssaveoptions/check_font_compatibility/_index.md
index 4c8536caa3..97a1b26b36 100644
--- a/english/aspose.cells/xpssaveoptions/check_font_compatibility/_index.md
+++ b/english/aspose.cells/xpssaveoptions/check_font_compatibility/_index.md
@@ -3,7 +3,7 @@ title: check_font_compatibility property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 50
+weight: 60
url: /aspose.cells/xpssaveoptions/check_font_compatibility/
is_root: false
---
diff --git a/english/aspose.cells/xpssaveoptions/check_workbook_default_font/_index.md b/english/aspose.cells/xpssaveoptions/check_workbook_default_font/_index.md
index 1d062733c2..72e41cd034 100644
--- a/english/aspose.cells/xpssaveoptions/check_workbook_default_font/_index.md
+++ b/english/aspose.cells/xpssaveoptions/check_workbook_default_font/_index.md
@@ -3,7 +3,7 @@ title: check_workbook_default_font property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 60
+weight: 70
url: /aspose.cells/xpssaveoptions/check_workbook_default_font/
is_root: false
---
diff --git a/english/aspose.cells/xpssaveoptions/clear_data/_index.md b/english/aspose.cells/xpssaveoptions/clear_data/_index.md
index 49e4e19b96..9ba237f07f 100644
--- a/english/aspose.cells/xpssaveoptions/clear_data/_index.md
+++ b/english/aspose.cells/xpssaveoptions/clear_data/_index.md
@@ -3,7 +3,7 @@ title: clear_data property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 70
+weight: 80
url: /aspose.cells/xpssaveoptions/clear_data/
is_root: false
---
diff --git a/english/aspose.cells/xpssaveoptions/create_directory/_index.md b/english/aspose.cells/xpssaveoptions/create_directory/_index.md
index 89daea18c9..412b23ca13 100644
--- a/english/aspose.cells/xpssaveoptions/create_directory/_index.md
+++ b/english/aspose.cells/xpssaveoptions/create_directory/_index.md
@@ -3,7 +3,7 @@ title: create_directory property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 80
+weight: 90
url: /aspose.cells/xpssaveoptions/create_directory/
is_root: false
---
diff --git a/english/aspose.cells/xpssaveoptions/default_edit_language/_index.md b/english/aspose.cells/xpssaveoptions/default_edit_language/_index.md
index 215693724d..d291cbde25 100644
--- a/english/aspose.cells/xpssaveoptions/default_edit_language/_index.md
+++ b/english/aspose.cells/xpssaveoptions/default_edit_language/_index.md
@@ -3,7 +3,7 @@ title: default_edit_language property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 90
+weight: 100
url: /aspose.cells/xpssaveoptions/default_edit_language/
is_root: false
---
diff --git a/english/aspose.cells/xpssaveoptions/default_font/_index.md b/english/aspose.cells/xpssaveoptions/default_font/_index.md
index 5463340cdf..2d8e9cf45a 100644
--- a/english/aspose.cells/xpssaveoptions/default_font/_index.md
+++ b/english/aspose.cells/xpssaveoptions/default_font/_index.md
@@ -3,7 +3,7 @@ title: default_font property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 100
+weight: 110
url: /aspose.cells/xpssaveoptions/default_font/
is_root: false
---
diff --git a/english/aspose.cells/xpssaveoptions/draw_object_event_handler/_index.md b/english/aspose.cells/xpssaveoptions/draw_object_event_handler/_index.md
index ac6bb8998f..c44bd36f2d 100644
--- a/english/aspose.cells/xpssaveoptions/draw_object_event_handler/_index.md
+++ b/english/aspose.cells/xpssaveoptions/draw_object_event_handler/_index.md
@@ -3,7 +3,7 @@ title: draw_object_event_handler property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 110
+weight: 120
url: /aspose.cells/xpssaveoptions/draw_object_event_handler/
is_root: false
---
diff --git a/english/aspose.cells/xpssaveoptions/emf_render_setting/_index.md b/english/aspose.cells/xpssaveoptions/emf_render_setting/_index.md
index 5fbe8ddeba..fb18faa454 100644
--- a/english/aspose.cells/xpssaveoptions/emf_render_setting/_index.md
+++ b/english/aspose.cells/xpssaveoptions/emf_render_setting/_index.md
@@ -3,7 +3,7 @@ title: emf_render_setting property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 120
+weight: 130
url: /aspose.cells/xpssaveoptions/emf_render_setting/
is_root: false
---
diff --git a/english/aspose.cells/xpssaveoptions/encrypt_document_properties/_index.md b/english/aspose.cells/xpssaveoptions/encrypt_document_properties/_index.md
index 25f6501d80..25231e0cc8 100644
--- a/english/aspose.cells/xpssaveoptions/encrypt_document_properties/_index.md
+++ b/english/aspose.cells/xpssaveoptions/encrypt_document_properties/_index.md
@@ -3,7 +3,7 @@ title: encrypt_document_properties property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 130
+weight: 140
url: /aspose.cells/xpssaveoptions/encrypt_document_properties/
is_root: false
---
diff --git a/english/aspose.cells/xpssaveoptions/gridline_type/_index.md b/english/aspose.cells/xpssaveoptions/gridline_type/_index.md
index 2e2395c8db..dd8806da4f 100644
--- a/english/aspose.cells/xpssaveoptions/gridline_type/_index.md
+++ b/english/aspose.cells/xpssaveoptions/gridline_type/_index.md
@@ -3,7 +3,7 @@ title: gridline_type property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 140
+weight: 150
url: /aspose.cells/xpssaveoptions/gridline_type/
is_root: false
---
diff --git a/english/aspose.cells/xpssaveoptions/ignore_error/_index.md b/english/aspose.cells/xpssaveoptions/ignore_error/_index.md
index 1aba7606e8..ab0480ad1b 100644
--- a/english/aspose.cells/xpssaveoptions/ignore_error/_index.md
+++ b/english/aspose.cells/xpssaveoptions/ignore_error/_index.md
@@ -3,7 +3,7 @@ title: ignore_error property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 150
+weight: 160
url: /aspose.cells/xpssaveoptions/ignore_error/
is_root: false
---
diff --git a/english/aspose.cells/xpssaveoptions/is_font_substitution_char_granularity/_index.md b/english/aspose.cells/xpssaveoptions/is_font_substitution_char_granularity/_index.md
index 38006edca9..1570762a0c 100644
--- a/english/aspose.cells/xpssaveoptions/is_font_substitution_char_granularity/_index.md
+++ b/english/aspose.cells/xpssaveoptions/is_font_substitution_char_granularity/_index.md
@@ -3,7 +3,7 @@ title: is_font_substitution_char_granularity property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 160
+weight: 170
url: /aspose.cells/xpssaveoptions/is_font_substitution_char_granularity/
is_root: false
---
diff --git a/english/aspose.cells/xpssaveoptions/merge_areas/_index.md b/english/aspose.cells/xpssaveoptions/merge_areas/_index.md
index 2c721c44da..6152acd711 100644
--- a/english/aspose.cells/xpssaveoptions/merge_areas/_index.md
+++ b/english/aspose.cells/xpssaveoptions/merge_areas/_index.md
@@ -3,7 +3,7 @@ title: merge_areas property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 170
+weight: 180
url: /aspose.cells/xpssaveoptions/merge_areas/
is_root: false
---
diff --git a/english/aspose.cells/xpssaveoptions/one_page_per_sheet/_index.md b/english/aspose.cells/xpssaveoptions/one_page_per_sheet/_index.md
index b47f5846d8..0c1aad2f6a 100644
--- a/english/aspose.cells/xpssaveoptions/one_page_per_sheet/_index.md
+++ b/english/aspose.cells/xpssaveoptions/one_page_per_sheet/_index.md
@@ -3,7 +3,7 @@ title: one_page_per_sheet property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 180
+weight: 190
url: /aspose.cells/xpssaveoptions/one_page_per_sheet/
is_root: false
---
diff --git a/english/aspose.cells/xpssaveoptions/output_blank_page_when_nothing_to_print/_index.md b/english/aspose.cells/xpssaveoptions/output_blank_page_when_nothing_to_print/_index.md
index dd96dc50c4..e54d2ab45a 100644
--- a/english/aspose.cells/xpssaveoptions/output_blank_page_when_nothing_to_print/_index.md
+++ b/english/aspose.cells/xpssaveoptions/output_blank_page_when_nothing_to_print/_index.md
@@ -3,7 +3,7 @@ title: output_blank_page_when_nothing_to_print property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 190
+weight: 200
url: /aspose.cells/xpssaveoptions/output_blank_page_when_nothing_to_print/
is_root: false
---
diff --git a/english/aspose.cells/xpssaveoptions/page_count/_index.md b/english/aspose.cells/xpssaveoptions/page_count/_index.md
index ef83788305..63bf6cd9de 100644
--- a/english/aspose.cells/xpssaveoptions/page_count/_index.md
+++ b/english/aspose.cells/xpssaveoptions/page_count/_index.md
@@ -3,7 +3,7 @@ title: page_count property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 200
+weight: 210
url: /aspose.cells/xpssaveoptions/page_count/
is_root: false
---
diff --git a/english/aspose.cells/xpssaveoptions/page_index/_index.md b/english/aspose.cells/xpssaveoptions/page_index/_index.md
index 3acabc29c0..01ae1d8f61 100644
--- a/english/aspose.cells/xpssaveoptions/page_index/_index.md
+++ b/english/aspose.cells/xpssaveoptions/page_index/_index.md
@@ -3,7 +3,7 @@ title: page_index property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 210
+weight: 220
url: /aspose.cells/xpssaveoptions/page_index/
is_root: false
---
diff --git a/english/aspose.cells/xpssaveoptions/page_saving_callback/_index.md b/english/aspose.cells/xpssaveoptions/page_saving_callback/_index.md
index b0fb03abe4..6a5fe2072a 100644
--- a/english/aspose.cells/xpssaveoptions/page_saving_callback/_index.md
+++ b/english/aspose.cells/xpssaveoptions/page_saving_callback/_index.md
@@ -3,7 +3,7 @@ title: page_saving_callback property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 220
+weight: 230
url: /aspose.cells/xpssaveoptions/page_saving_callback/
is_root: false
---
diff --git a/english/aspose.cells/xpssaveoptions/printing_page_type/_index.md b/english/aspose.cells/xpssaveoptions/printing_page_type/_index.md
index 22387ae858..5f4a06442b 100644
--- a/english/aspose.cells/xpssaveoptions/printing_page_type/_index.md
+++ b/english/aspose.cells/xpssaveoptions/printing_page_type/_index.md
@@ -3,7 +3,7 @@ title: printing_page_type property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 230
+weight: 240
url: /aspose.cells/xpssaveoptions/printing_page_type/
is_root: false
---
diff --git a/english/aspose.cells/xpssaveoptions/refresh_chart_cache/_index.md b/english/aspose.cells/xpssaveoptions/refresh_chart_cache/_index.md
index 86ead55de2..5816db0bcc 100644
--- a/english/aspose.cells/xpssaveoptions/refresh_chart_cache/_index.md
+++ b/english/aspose.cells/xpssaveoptions/refresh_chart_cache/_index.md
@@ -3,7 +3,7 @@ title: refresh_chart_cache property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 240
+weight: 250
url: /aspose.cells/xpssaveoptions/refresh_chart_cache/
is_root: false
---
diff --git a/english/aspose.cells/xpssaveoptions/save_format/_index.md b/english/aspose.cells/xpssaveoptions/save_format/_index.md
index 2f27ac846a..1f17a63342 100644
--- a/english/aspose.cells/xpssaveoptions/save_format/_index.md
+++ b/english/aspose.cells/xpssaveoptions/save_format/_index.md
@@ -3,7 +3,7 @@ title: save_format property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 250
+weight: 260
url: /aspose.cells/xpssaveoptions/save_format/
is_root: false
---
diff --git a/english/aspose.cells/xpssaveoptions/sheet_set/_index.md b/english/aspose.cells/xpssaveoptions/sheet_set/_index.md
index 4e050ca196..8f61a2e2c4 100644
--- a/english/aspose.cells/xpssaveoptions/sheet_set/_index.md
+++ b/english/aspose.cells/xpssaveoptions/sheet_set/_index.md
@@ -3,7 +3,7 @@ title: sheet_set property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 260
+weight: 270
url: /aspose.cells/xpssaveoptions/sheet_set/
is_root: false
---
diff --git a/english/aspose.cells/xpssaveoptions/sort_external_names/_index.md b/english/aspose.cells/xpssaveoptions/sort_external_names/_index.md
index 5df2cb2bd2..1c3d096a85 100644
--- a/english/aspose.cells/xpssaveoptions/sort_external_names/_index.md
+++ b/english/aspose.cells/xpssaveoptions/sort_external_names/_index.md
@@ -3,7 +3,7 @@ title: sort_external_names property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 270
+weight: 280
url: /aspose.cells/xpssaveoptions/sort_external_names/
is_root: false
---
diff --git a/english/aspose.cells/xpssaveoptions/sort_names/_index.md b/english/aspose.cells/xpssaveoptions/sort_names/_index.md
index f5c0e78fc4..45c1a4e69a 100644
--- a/english/aspose.cells/xpssaveoptions/sort_names/_index.md
+++ b/english/aspose.cells/xpssaveoptions/sort_names/_index.md
@@ -3,7 +3,7 @@ title: sort_names property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 280
+weight: 290
url: /aspose.cells/xpssaveoptions/sort_names/
is_root: false
---
diff --git a/english/aspose.cells/xpssaveoptions/text_cross_type/_index.md b/english/aspose.cells/xpssaveoptions/text_cross_type/_index.md
index 9b4701e237..659b0cef59 100644
--- a/english/aspose.cells/xpssaveoptions/text_cross_type/_index.md
+++ b/english/aspose.cells/xpssaveoptions/text_cross_type/_index.md
@@ -3,7 +3,7 @@ title: text_cross_type property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 290
+weight: 300
url: /aspose.cells/xpssaveoptions/text_cross_type/
is_root: false
---
diff --git a/english/aspose.cells/xpssaveoptions/update_smart_art/_index.md b/english/aspose.cells/xpssaveoptions/update_smart_art/_index.md
index 914348e1db..a58aa119e5 100644
--- a/english/aspose.cells/xpssaveoptions/update_smart_art/_index.md
+++ b/english/aspose.cells/xpssaveoptions/update_smart_art/_index.md
@@ -3,7 +3,7 @@ title: update_smart_art property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 300
+weight: 310
url: /aspose.cells/xpssaveoptions/update_smart_art/
is_root: false
---
diff --git a/english/aspose.cells/xpssaveoptions/validate_merged_areas/_index.md b/english/aspose.cells/xpssaveoptions/validate_merged_areas/_index.md
index 13c02816c5..f2f67ab1eb 100644
--- a/english/aspose.cells/xpssaveoptions/validate_merged_areas/_index.md
+++ b/english/aspose.cells/xpssaveoptions/validate_merged_areas/_index.md
@@ -3,7 +3,7 @@ title: validate_merged_areas property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 310
+weight: 320
url: /aspose.cells/xpssaveoptions/validate_merged_areas/
is_root: false
---
diff --git a/english/aspose.cells/xpssaveoptions/warning_callback/_index.md b/english/aspose.cells/xpssaveoptions/warning_callback/_index.md
index e188b4f82a..429eb445d5 100644
--- a/english/aspose.cells/xpssaveoptions/warning_callback/_index.md
+++ b/english/aspose.cells/xpssaveoptions/warning_callback/_index.md
@@ -3,7 +3,7 @@ title: warning_callback property
second_title: Aspose.Cells for Python via .NET API References
description:
type: docs
-weight: 320
+weight: 330
url: /aspose.cells/xpssaveoptions/warning_callback/
is_root: false
---
|