diff --git a/english/aspose.cells.charts/sparkline/_index.md b/english/aspose.cells.charts/sparkline/_index.md index bc25162006..2b75c77a8e 100644 --- a/english/aspose.cells.charts/sparkline/_index.md +++ b/english/aspose.cells.charts/sparkline/_index.md @@ -32,5 +32,34 @@ The Sparkline type exposes the following members: +### Example + + +```python +from aspose.cells import CellArea, Workbook +from aspose.cells.charts import SparklineType +from aspose.cells.rendering import ImageOrPrintOptions + +book = Workbook() +sheet = book.worksheets[0] +sheet.cells.get("A1").put_value(5) +sheet.cells.get("B1").put_value(2) +sheet.cells.get("C1").put_value(1) +sheet.cells.get("D1").put_value(3) +# Define the CellArea +ca = CellArea() +ca.start_column = 4 +ca.end_column = 4 +ca.start_row = 0 +ca.end_row = 0 +idx = sheet.sparkline_groups.add(SparklineType.LINE, sheet.name + "!A1:D1", False, ca) +group = sheet.sparkline_groups[idx] +idx = group.sparklines.add(sheet.name + "!A1:D1", 0, 4) +line = group.sparklines[idx] +print("Saprkline data range: " + line.data_range + ", row: " + str(line.row) + ", column: " + str(line.column)) +line.to_image("output.png", ImageOrPrintOptions()) + +``` + ### See Also * module [`aspose.cells.charts`](..) diff --git a/english/aspose.cells.charts/sparklinecollection/_index.md b/english/aspose.cells.charts/sparklinecollection/_index.md index 573a281cde..b362d0018e 100644 --- a/english/aspose.cells.charts/sparklinecollection/_index.md +++ b/english/aspose.cells.charts/sparklinecollection/_index.md @@ -37,6 +37,32 @@ The SparklineCollection type exposes the following members: +### Example + + +```python +from aspose.cells import CellArea, SaveFormat, Workbook +from aspose.cells.charts import SparklineType + +book = Workbook() +sheet = book.worksheets[0] +sheet.cells.get("A1").put_value(5) +sheet.cells.get("B1").put_value(2) +sheet.cells.get("C1").put_value(1) +sheet.cells.get("D1").put_value(3) +# Define the CellArea +ca = CellArea() +ca.start_column = 4 +ca.end_column = 4 +ca.start_row = 0 +ca.end_row = 0 +idx = sheet.sparkline_groups.add(SparklineType.LINE, sheet.name + "!A1:D1", False, ca) +group = sheet.sparkline_groups[idx] +group.sparklines.add(sheet.name + "!A1:D1", 0, 4) +book.save("output.xlsx", SaveFormat.XLSX) + +``` + ### See Also * module [`aspose.cells.charts`](..) * class [`Sparkline`](/cells/python-net/aspose.cells.charts/sparkline) diff --git a/english/aspose.cells.charts/sparklinegroup/_index.md b/english/aspose.cells.charts/sparklinegroup/_index.md index 132cd8a6cd..2f19382656 100644 --- a/english/aspose.cells.charts/sparklinegroup/_index.md +++ b/english/aspose.cells.charts/sparklinegroup/_index.md @@ -57,6 +57,44 @@ The SparklineGroup type exposes the following members: +### Example + + +```python +from aspose.cells import CellArea, SaveFormat, Workbook +from aspose.cells.charts import SparklineType +from aspose.pydrawing import Color + +book = Workbook() +sheet = book.worksheets[0] +sheet.cells.get("A1").put_value(5) +sheet.cells.get("B1").put_value(2) +sheet.cells.get("C1").put_value(1) +sheet.cells.get("D1").put_value(3) +# Define the CellArea +ca = CellArea() +ca.start_column = 4 +ca.end_column = 4 +ca.start_row = 0 +ca.end_row = 0 +idx = sheet.sparkline_groups.add(SparklineType.LINE, "A1:D1", False, ca) +group = sheet.sparkline_groups[idx] +group.sparklines.add(sheet.name + "!A1:D1", 0, 4) +# Create CellsColor +clr = book.create_cells_color() +clr.color = Color.orange +group.series_color = clr +# set the high points are colored green and the low points are colored red +group.show_high_point = True +group.show_low_point = True +group.high_point_color.color = Color.green +group.low_point_color.color = Color.red +# set line weight +group.line_weight = 1.0 +book.save("output.xlsx", SaveFormat.XLSX) + +``` + ### See Also * module [`aspose.cells.charts`](..) * class [`Sparkline`](/cells/python-net/aspose.cells.charts/sparkline) diff --git a/english/aspose.cells.charts/sparklinegroupcollection/_index.md b/english/aspose.cells.charts/sparklinegroupcollection/_index.md index a9e52ce02c..601fa959b5 100644 --- a/english/aspose.cells.charts/sparklinegroupcollection/_index.md +++ b/english/aspose.cells.charts/sparklinegroupcollection/_index.md @@ -39,6 +39,32 @@ The SparklineGroupCollection type exposes the following members: +### Example + + +```python +from aspose.cells import CellArea, SaveFormat, Workbook +from aspose.cells.charts import SparklineType + +book = Workbook() +sheet = book.worksheets[0] +sheet.cells.get("A1").put_value(5) +sheet.cells.get("B1").put_value(2) +sheet.cells.get("C1").put_value(1) +sheet.cells.get("D1").put_value(3) +# Define the CellArea +ca = CellArea() +ca.start_column = 4 +ca.end_column = 4 +ca.start_row = 0 +ca.end_row = 0 +idx = sheet.sparkline_groups.add(SparklineType.LINE, "A1:D1", False, ca) +group = sheet.sparkline_groups[idx] +group.sparklines.add(sheet.name + "!A1:D1", 0, 4) +book.save("output.xlsx", SaveFormat.XLSX) + +``` + ### See Also * module [`aspose.cells.charts`](..) * class [`SparklineGroup`](/cells/python-net/aspose.cells.charts/sparklinegroup) diff --git a/english/aspose.cells.pivot/pivotitem/_index.md b/english/aspose.cells.pivot/pivotitem/_index.md index 7be4b40f04..dd0f004d34 100644 --- a/english/aspose.cells.pivot/pivotitem/_index.md +++ b/english/aspose.cells.pivot/pivotitem/_index.md @@ -20,6 +20,8 @@ The PivotItem type exposes the following members: | Property | Description | | :- | :- | | [is_hidden](/cells/python-net/aspose.cells.pivot/pivotitem/is_hidden) | Gets and Sets whether the pivot item is hidden. | +| [position](/cells/python-net/aspose.cells.pivot/pivotitem/position) | Specifying the position index in all the PivotItems,not the PivotItems under the same parent node. | +| [position_in_same_parent_node](/cells/python-net/aspose.cells.pivot/pivotitem/position_in_same_parent_node) | Specifying the position index in the PivotItems under the same parent node. | | [is_hide_detail](/cells/python-net/aspose.cells.pivot/pivotitem/is_hide_detail) | Gets and Sets whether the pivot item hides detail. | | [is_missing](/cells/python-net/aspose.cells.pivot/pivotitem/is_missing) | Indicates whether the item has a missing value. | | [value](/cells/python-net/aspose.cells.pivot/pivotitem/value) | Gets the value of the pivot item | diff --git a/english/aspose.cells.pivot/pivotitem/position/_index.md b/english/aspose.cells.pivot/pivotitem/position/_index.md new file mode 100644 index 0000000000..c336644b63 --- /dev/null +++ b/english/aspose.cells.pivot/pivotitem/position/_index.md @@ -0,0 +1,27 @@ +--- +title: position property +second_title: Aspose.Cells for Python via .NET API References +description: +type: docs +weight: 120 +url: /aspose.cells.pivot/pivotitem/position/ +is_root: false +--- + +## position property + + +Specifying the position index in all the PivotItems,not the PivotItems under the same parent node. +### Definition: +```python +@property +def position(self): + ... +@position.setter +def position(self, value): + ... +``` + +### See Also +* module [`aspose.cells.pivot`](../../) +* class [`PivotItem`](/cells/python-net/aspose.cells.pivot/pivotitem) diff --git a/english/aspose.cells.pivot/pivotitem/position_in_same_parent_node/_index.md b/english/aspose.cells.pivot/pivotitem/position_in_same_parent_node/_index.md new file mode 100644 index 0000000000..1ce02d3a10 --- /dev/null +++ b/english/aspose.cells.pivot/pivotitem/position_in_same_parent_node/_index.md @@ -0,0 +1,27 @@ +--- +title: position_in_same_parent_node property +second_title: Aspose.Cells for Python via .NET API References +description: +type: docs +weight: 130 +url: /aspose.cells.pivot/pivotitem/position_in_same_parent_node/ +is_root: false +--- + +## position_in_same_parent_node property + + +Specifying the position index in the PivotItems under the same parent node. +### Definition: +```python +@property +def position_in_same_parent_node(self): + ... +@position_in_same_parent_node.setter +def position_in_same_parent_node(self, value): + ... +``` + +### See Also +* module [`aspose.cells.pivot`](../../) +* class [`PivotItem`](/cells/python-net/aspose.cells.pivot/pivotitem) diff --git a/english/aspose.cells.pivot/pivotitem/value/_index.md b/english/aspose.cells.pivot/pivotitem/value/_index.md index 8a818432cf..470ff9293c 100644 --- a/english/aspose.cells.pivot/pivotitem/value/_index.md +++ b/english/aspose.cells.pivot/pivotitem/value/_index.md @@ -3,7 +3,7 @@ title: value property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 120 +weight: 140 url: /aspose.cells.pivot/pivotitem/value/ is_root: false --- diff --git a/english/aspose.cells.saving/ebooksaveoptions/_index.md b/english/aspose.cells.saving/ebooksaveoptions/_index.md index 3b2a9d21f4..9a8fe870da 100644 --- a/english/aspose.cells.saving/ebooksaveoptions/_index.md +++ b/english/aspose.cells.saving/ebooksaveoptions/_index.md @@ -47,6 +47,7 @@ The EbookSaveOptions type exposes the following members: | [attached_files_directory](/cells/python-net/aspose.cells.saving/ebooksaveoptions/attached_files_directory) | The directory that the attached files will be saved to.
Only for saving to html stream. | | [attached_files_url_prefix](/cells/python-net/aspose.cells.saving/ebooksaveoptions/attached_files_url_prefix) | Specify the Url prefix of attached files such as image in the html file.
Only for saving to html stream. | | [default_font_name](/cells/python-net/aspose.cells.saving/ebooksaveoptions/default_font_name) | Specify the default font name for exporting html, the default font will be used when the font of style is not existing,
If this property is null, Aspose.Cells will use universal font which have the same family with the original font,
the default value is null. | +| [add_generic_font](/cells/python-net/aspose.cells.saving/ebooksaveoptions/add_generic_font) | Indicates whether to add a generic font to CSS font-family.
The default value is true | | [worksheet_scalable](/cells/python-net/aspose.cells.saving/ebooksaveoptions/worksheet_scalable) | Indicates if zooming in or out the html via worksheet zoom level when saving file to html, the default value is false. | | [is_export_comments](/cells/python-net/aspose.cells.saving/ebooksaveoptions/is_export_comments) | Indicates if exporting comments when saving file to html, the default value is false. | | [export_comments_type](/cells/python-net/aspose.cells.saving/ebooksaveoptions/export_comments_type) | Represents type of exporting comments to html files. | @@ -103,6 +104,7 @@ The EbookSaveOptions type exposes the following members: | [is_mobile_compatible](/cells/python-net/aspose.cells.saving/ebooksaveoptions/is_mobile_compatible) | Indicates whether the output HTML is compatible with mobile devices.
The default value is false. | | [css_styles](/cells/python-net/aspose.cells.saving/ebooksaveoptions/css_styles) | Gets or sets the additional css styles for the formatter.
Only works when [`HtmlSaveOptions.save_as_single_file`](/cells/python-net/aspose.cells/htmlsaveoptions#save_as_single_file) is True.

CssStyles="body { padding: 5px }"; | | [hide_overflow_wrapped_text](/cells/python-net/aspose.cells.saving/ebooksaveoptions/hide_overflow_wrapped_text) | Indicates whether to hide overflow text when the cell format is set to wrap text.
The default value is false | +| [is_border_collapsed](/cells/python-net/aspose.cells.saving/ebooksaveoptions/is_border_collapsed) | Indicates whether the table borders are collapsed.
The default value is true. | diff --git a/english/aspose.cells.saving/ebooksaveoptions/add_generic_font/_index.md b/english/aspose.cells.saving/ebooksaveoptions/add_generic_font/_index.md new file mode 100644 index 0000000000..00e0591f77 --- /dev/null +++ b/english/aspose.cells.saving/ebooksaveoptions/add_generic_font/_index.md @@ -0,0 +1,28 @@ +--- +title: add_generic_font property +second_title: Aspose.Cells for Python via .NET API References +description: +type: docs +weight: 30 +url: /aspose.cells.saving/ebooksaveoptions/add_generic_font/ +is_root: false +--- + +## add_generic_font property + + +Indicates whether to add a generic font to CSS font-family. +The default value is true +### Definition: +```python +@property +def add_generic_font(self): + ... +@add_generic_font.setter +def add_generic_font(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/add_tooltip_text/_index.md b/english/aspose.cells.saving/ebooksaveoptions/add_tooltip_text/_index.md index 715638d59b..7b0634670e 100644 --- a/english/aspose.cells.saving/ebooksaveoptions/add_tooltip_text/_index.md +++ b/english/aspose.cells.saving/ebooksaveoptions/add_tooltip_text/_index.md @@ -3,7 +3,7 @@ title: add_tooltip_text property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 30 +weight: 40 url: /aspose.cells.saving/ebooksaveoptions/add_tooltip_text/ is_root: false --- diff --git a/english/aspose.cells.saving/ebooksaveoptions/attached_files_directory/_index.md b/english/aspose.cells.saving/ebooksaveoptions/attached_files_directory/_index.md index 77d66dfaf4..a364c5950d 100644 --- a/english/aspose.cells.saving/ebooksaveoptions/attached_files_directory/_index.md +++ b/english/aspose.cells.saving/ebooksaveoptions/attached_files_directory/_index.md @@ -3,7 +3,7 @@ title: attached_files_directory property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 40 +weight: 50 url: /aspose.cells.saving/ebooksaveoptions/attached_files_directory/ is_root: false --- diff --git a/english/aspose.cells.saving/ebooksaveoptions/attached_files_url_prefix/_index.md b/english/aspose.cells.saving/ebooksaveoptions/attached_files_url_prefix/_index.md index a0ccc7d5b3..f8ffae90ce 100644 --- a/english/aspose.cells.saving/ebooksaveoptions/attached_files_url_prefix/_index.md +++ b/english/aspose.cells.saving/ebooksaveoptions/attached_files_url_prefix/_index.md @@ -3,7 +3,7 @@ title: attached_files_url_prefix property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 50 +weight: 60 url: /aspose.cells.saving/ebooksaveoptions/attached_files_url_prefix/ is_root: false --- diff --git a/english/aspose.cells.saving/ebooksaveoptions/cached_file_folder/_index.md b/english/aspose.cells.saving/ebooksaveoptions/cached_file_folder/_index.md index 6eb48de071..060de98595 100644 --- a/english/aspose.cells.saving/ebooksaveoptions/cached_file_folder/_index.md +++ b/english/aspose.cells.saving/ebooksaveoptions/cached_file_folder/_index.md @@ -3,7 +3,7 @@ title: cached_file_folder property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 60 +weight: 70 url: /aspose.cells.saving/ebooksaveoptions/cached_file_folder/ is_root: false --- diff --git a/english/aspose.cells.saving/ebooksaveoptions/calculate_formula/_index.md b/english/aspose.cells.saving/ebooksaveoptions/calculate_formula/_index.md index d04c2945fd..7fa7ebed24 100644 --- a/english/aspose.cells.saving/ebooksaveoptions/calculate_formula/_index.md +++ b/english/aspose.cells.saving/ebooksaveoptions/calculate_formula/_index.md @@ -3,7 +3,7 @@ title: calculate_formula property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 70 +weight: 80 url: /aspose.cells.saving/ebooksaveoptions/calculate_formula/ is_root: false --- diff --git a/english/aspose.cells.saving/ebooksaveoptions/cell_css_prefix/_index.md b/english/aspose.cells.saving/ebooksaveoptions/cell_css_prefix/_index.md index d23f0fdc3e..5055c55c71 100644 --- a/english/aspose.cells.saving/ebooksaveoptions/cell_css_prefix/_index.md +++ b/english/aspose.cells.saving/ebooksaveoptions/cell_css_prefix/_index.md @@ -3,7 +3,7 @@ title: cell_css_prefix property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 80 +weight: 90 url: /aspose.cells.saving/ebooksaveoptions/cell_css_prefix/ is_root: false --- diff --git a/english/aspose.cells.saving/ebooksaveoptions/clear_data/_index.md b/english/aspose.cells.saving/ebooksaveoptions/clear_data/_index.md index 5e7aa85f26..c0b245eeb8 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: 90 +weight: 100 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 5cac6bf285..c763a922c3 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: 100 +weight: 110 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 03e7cbbfd7..4844e49b0d 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: 110 +weight: 120 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 3a829f922c..3168d5087a 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: 120 +weight: 130 url: /aspose.cells.saving/ebooksaveoptions/default_font_name/ is_root: false --- 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 004daa2142..2becbeb28c 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: 130 +weight: 140 url: /aspose.cells.saving/ebooksaveoptions/disable_downlevel_revealed_comments/ is_root: false --- diff --git a/english/aspose.cells.saving/ebooksaveoptions/encoding/_index.md b/english/aspose.cells.saving/ebooksaveoptions/encoding/_index.md index 5bf24fe203..1b6f9ee935 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: 140 +weight: 150 url: /aspose.cells.saving/ebooksaveoptions/encoding/ 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 dc02f63653..b3e8e36eee 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: 150 +weight: 160 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 485fe72712..e1b28f2d95 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: 160 +weight: 170 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 c19a952db5..395147b288 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: 170 +weight: 180 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 50b084bbf9..11a5ddf21b 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: 180 +weight: 190 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 0bf1812cfc..7c96578d50 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: 190 +weight: 200 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 fc9b3c504f..170ae70786 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: 200 +weight: 210 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 41ab772111..4022897d81 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: 210 +weight: 220 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 25fcd4b1bb..ca40ffb197 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: 220 +weight: 230 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 395cba1d00..97cfd066a3 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: 230 +weight: 240 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 2f38043f29..ae87fa2ef9 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: 240 +weight: 250 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 7ee0563a26..57917c8eac 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: 250 +weight: 260 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 38d35f45ed..031ee0d42b 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: 260 +weight: 270 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 c4b934c95f..57cceb9a84 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: 270 +weight: 280 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 62ca366b69..63b7bbbe7d 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: 280 +weight: 290 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 07ceea3ef8..f1f320db63 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: 290 +weight: 300 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 0a5b1b0a39..a5a44c708f 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: 300 +weight: 310 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 d5898c5fcf..19bfa340e1 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: 310 +weight: 320 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 efa2aad099..0d000b05c1 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: 320 +weight: 330 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 f7ab61a3a7..78df46b0ba 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: 330 +weight: 340 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 1868a51b5d..ed377dd208 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: 340 +weight: 350 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 49fc6cab73..eed4ee71ee 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: 350 +weight: 360 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 64c767622a..12d6db701d 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: 360 +weight: 370 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 ab6980e3c5..fb18f1f315 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: 370 +weight: 380 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 2698bb22d8..50ddfc6661 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: 380 +weight: 390 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 8ef822234f..5e1e1c2274 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: 390 +weight: 400 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 d552359c6a..c596f67e9c 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: 400 +weight: 410 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 3010e814da..a8c99464d2 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: 410 +weight: 420 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 126f27fee0..690eae714b 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: 420 +weight: 430 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 4cb2ee5fba..93304eb668 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: 430 +weight: 440 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 ba61b226ab..8d5640cb99 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: 440 +weight: 450 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 0b6a55eb71..b08384b40a 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: 450 +weight: 460 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 37891036a7..76ca84e8fc 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: 460 +weight: 470 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 b5e08ed9ba..2a84dc0209 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: 470 +weight: 480 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 8e807f0fe0..2ddcc4df29 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: 480 +weight: 490 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 new file mode 100644 index 0000000000..295d45cfd5 --- /dev/null +++ b/english/aspose.cells.saving/ebooksaveoptions/is_border_collapsed/_index.md @@ -0,0 +1,28 @@ +--- +title: is_border_collapsed property +second_title: Aspose.Cells for Python via .NET API References +description: +type: docs +weight: 500 +url: /aspose.cells.saving/ebooksaveoptions/is_border_collapsed/ +is_root: false +--- + +## is_border_collapsed property + + +Indicates whether the table borders are collapsed. +The default value is true. +### Definition: +```python +@property +def is_border_collapsed(self): + ... +@is_border_collapsed.setter +def is_border_collapsed(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/is_exp_image_to_temp_dir/_index.md b/english/aspose.cells.saving/ebooksaveoptions/is_exp_image_to_temp_dir/_index.md index 5f33026e1c..28ac8231e7 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: 490 +weight: 510 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 49770c3f3d..f27035081f 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: 500 +weight: 520 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 37912afb1c..a1552a9486 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: 510 +weight: 530 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 35c558712f..ef4d2bc6f8 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: 520 +weight: 540 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 16029350ef..a8b5d59742 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: 530 +weight: 550 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 74de67e111..50176bd48e 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: 540 +weight: 560 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 412a30509a..c968a61607 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: 550 +weight: 570 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 0ddb15cd2d..3b13b110ee 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: 560 +weight: 580 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 7b5a0f2af4..951661c14e 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: 570 +weight: 590 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 da524db39e..a3bb01bfa7 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: 580 +weight: 600 url: /aspose.cells.saving/ebooksaveoptions/merge_empty_td_type/ 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 595fc14e74..6843e3a73d 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: 590 +weight: 610 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 21b41c9f9b..9cbbbc6160 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: 600 +weight: 620 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 dd0faf3d43..7648856dda 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: 610 +weight: 630 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 94c8c70454..3c60474e93 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: 620 +weight: 640 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 b98d1371cb..7d44a32562 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: 630 +weight: 650 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 efc66508aa..69da12a1b9 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: 640 +weight: 660 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 770fd813f6..2f88261e84 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: 650 +weight: 670 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 f7426cc3be..bb548e2adb 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: 660 +weight: 680 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 1dc3a04d44..bdafadff57 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: 670 +weight: 690 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 fd520925c5..a376afd546 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: 680 +weight: 700 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 a49c3a9053..2973bf4513 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: 690 +weight: 710 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 7646962557..1d82684f11 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: 700 +weight: 720 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 d13e865109..1e82b6dd3f 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: 710 +weight: 730 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 25c7b8df35..4ee4ae2838 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: 720 +weight: 740 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 d7b09e0d4b..7b42747cbc 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: 730 +weight: 750 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 f53dc2cfe8..79913778fe 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: 740 +weight: 760 url: /aspose.cells.saving/ebooksaveoptions/worksheet_scalable/ is_root: false --- diff --git a/english/aspose.cells/_index.md b/english/aspose.cells/_index.md index 45f4f85d7e..fafbddf32c 100644 --- a/english/aspose.cells/_index.md +++ b/english/aspose.cells/_index.md @@ -21,6 +21,7 @@ For example, [`Workbook`](/cells/python-net/aspose.cells/workbook) class is the | [`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 | +| [`AdvancedFilter`](/cells/python-net/aspose.cells/advancedfilter) | Represents the settings of advanced filter. | | [`AutoFilter`](/cells/python-net/aspose.cells/autofilter) | Represents autofiltering for the specified worksheet. | | [`AutoFitterOptions`](/cells/python-net/aspose.cells/autofitteroptions) | Represents all auto fitter options. | | [`Border`](/cells/python-net/aspose.cells/border) | Encapsulates the object that represents the cell border. | @@ -215,6 +216,7 @@ For example, [`Workbook`](/cells/python-net/aspose.cells/workbook) class is the | [`CellBorderType`](/cells/python-net/aspose.cells/cellbordertype) | Enumerates a cell's border type. | | [`CellValueFormatStrategy`](/cells/python-net/aspose.cells/cellvalueformatstrategy) | Specifies how to apply style for the value of the cell. | | [`CellValueType`](/cells/python-net/aspose.cells/cellvaluetype) | Specifies a cell value type. | +| [`CellsUnitType`](/cells/python-net/aspose.cells/cellsunittype) | Specifies the unit of measurement. | | [`ColorType`](/cells/python-net/aspose.cells/colortype) | Represents all color type | | [`ConsolidationFunction`](/cells/python-net/aspose.cells/consolidationfunction) | Represents consolidation function. | | [`CopyFormatType`](/cells/python-net/aspose.cells/copyformattype) | Represents type of copying format when inserting rows. | diff --git a/english/aspose.cells/accesscacheoptions/_index.md b/english/aspose.cells/accesscacheoptions/_index.md index 866c836542..9aec35e42e 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: 1840 +weight: 1850 url: /aspose.cells/accesscacheoptions/ is_root: false --- diff --git a/english/aspose.cells/advancedfilter/_index.md b/english/aspose.cells/advancedfilter/_index.md new file mode 100644 index 0000000000..5276261feb --- /dev/null +++ b/english/aspose.cells/advancedfilter/_index.md @@ -0,0 +1,29 @@ +--- +title: AdvancedFilter class +second_title: Aspose.Cells for Python via .NET API References +description: +type: docs +weight: 70 +url: /aspose.cells/advancedfilter/ +is_root: false +--- + +## AdvancedFilter class + +Represents the settings of advanced filter. + + + +The AdvancedFilter type exposes the following members: + +### Properties +| Property | Description | +| :- | :- | +| [list_range](/cells/python-net/aspose.cells/advancedfilter/list_range) | Gets the list range of this advanced filter. | +| [criteria_range](/cells/python-net/aspose.cells/advancedfilter/criteria_range) | Gets the criteria range of this advanced filter. | +| [copy_to_range](/cells/python-net/aspose.cells/advancedfilter/copy_to_range) | Gets the range where copying the resut of this advanced filter to. | + + + +### See Also +* module [`aspose.cells`](..) diff --git a/english/aspose.cells/advancedfilter/copy_to_range/_index.md b/english/aspose.cells/advancedfilter/copy_to_range/_index.md new file mode 100644 index 0000000000..cf4171c4fc --- /dev/null +++ b/english/aspose.cells/advancedfilter/copy_to_range/_index.md @@ -0,0 +1,24 @@ +--- +title: copy_to_range property +second_title: Aspose.Cells for Python via .NET API References +description: +type: docs +weight: 30 +url: /aspose.cells/advancedfilter/copy_to_range/ +is_root: false +--- + +## copy_to_range property + + +Gets the range where copying the resut of this advanced filter to. +### Definition: +```python +@property +def copy_to_range(self): + ... +``` + +### See Also +* module [`aspose.cells`](../../) +* class [`AdvancedFilter`](/cells/python-net/aspose.cells/advancedfilter) diff --git a/english/aspose.cells/advancedfilter/criteria_range/_index.md b/english/aspose.cells/advancedfilter/criteria_range/_index.md new file mode 100644 index 0000000000..c68fe07a8d --- /dev/null +++ b/english/aspose.cells/advancedfilter/criteria_range/_index.md @@ -0,0 +1,24 @@ +--- +title: criteria_range property +second_title: Aspose.Cells for Python via .NET API References +description: +type: docs +weight: 40 +url: /aspose.cells/advancedfilter/criteria_range/ +is_root: false +--- + +## criteria_range property + + +Gets the criteria range of this advanced filter. +### Definition: +```python +@property +def criteria_range(self): + ... +``` + +### See Also +* module [`aspose.cells`](../../) +* class [`AdvancedFilter`](/cells/python-net/aspose.cells/advancedfilter) diff --git a/english/aspose.cells/advancedfilter/list_range/_index.md b/english/aspose.cells/advancedfilter/list_range/_index.md new file mode 100644 index 0000000000..85dbae76b5 --- /dev/null +++ b/english/aspose.cells/advancedfilter/list_range/_index.md @@ -0,0 +1,24 @@ +--- +title: list_range property +second_title: Aspose.Cells for Python via .NET API References +description: +type: docs +weight: 50 +url: /aspose.cells/advancedfilter/list_range/ +is_root: false +--- + +## list_range property + + +Gets the list range of this advanced filter. +### Definition: +```python +@property +def list_range(self): + ... +``` + +### See Also +* module [`aspose.cells`](../../) +* class [`AdvancedFilter`](/cells/python-net/aspose.cells/advancedfilter) diff --git a/english/aspose.cells/autofilltype/_index.md b/english/aspose.cells/autofilltype/_index.md index 73fbe37c94..1644fbf5d2 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: 1850 +weight: 1860 url: /aspose.cells/autofilltype/ is_root: false --- diff --git a/english/aspose.cells/autofilter/_index.md b/english/aspose.cells/autofilter/_index.md index 61d47f6741..9d980358ec 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: 70 +weight: 80 url: /aspose.cells/autofilter/ is_root: false --- diff --git a/english/aspose.cells/autofitmergedcellstype/_index.md b/english/aspose.cells/autofitmergedcellstype/_index.md index efb2783d9d..a7f5120ab9 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: 1860 +weight: 1870 url: /aspose.cells/autofitmergedcellstype/ is_root: false --- diff --git a/english/aspose.cells/autofitteroptions/_index.md b/english/aspose.cells/autofitteroptions/_index.md index 68601a5b34..1078361388 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: 80 +weight: 90 url: /aspose.cells/autofitteroptions/ is_root: false --- diff --git a/english/aspose.cells/autofitwrappedtexttype/_index.md b/english/aspose.cells/autofitwrappedtexttype/_index.md index 9aa16bf896..c52036d8b2 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: 1870 +weight: 1880 url: /aspose.cells/autofitwrappedtexttype/ is_root: false --- diff --git a/english/aspose.cells/backgroundtype/_index.md b/english/aspose.cells/backgroundtype/_index.md index 1aaf6d293b..e7528fea3a 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: 1880 +weight: 1890 url: /aspose.cells/backgroundtype/ is_root: false --- diff --git a/english/aspose.cells/border/_index.md b/english/aspose.cells/border/_index.md index 3c646ca9db..29378c3975 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: 90 +weight: 100 url: /aspose.cells/border/ is_root: false --- diff --git a/english/aspose.cells/bordercollection/_index.md b/english/aspose.cells/bordercollection/_index.md index 1167783cc3..1947c5608b 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: 100 +weight: 110 url: /aspose.cells/bordercollection/ is_root: false --- diff --git a/english/aspose.cells/bordertype/_index.md b/english/aspose.cells/bordertype/_index.md index 6ca2665bab..6f2b70ce56 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: 1890 +weight: 1900 url: /aspose.cells/bordertype/ is_root: false --- diff --git a/english/aspose.cells/builtinstyletype/_index.md b/english/aspose.cells/builtinstyletype/_index.md index 096fae0968..57c74f7346 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: 1900 +weight: 1910 url: /aspose.cells/builtinstyletype/ is_root: false --- diff --git a/english/aspose.cells/calcmodetype/_index.md b/english/aspose.cells/calcmodetype/_index.md index 819df563cb..72b04b6c58 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: 1910 +weight: 1920 url: /aspose.cells/calcmodetype/ is_root: false --- diff --git a/english/aspose.cells/calculationcell/_index.md b/english/aspose.cells/calculationcell/_index.md index 0fca94ca1e..0f623ad2fd 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: 110 +weight: 120 url: /aspose.cells/calculationcell/ is_root: false --- diff --git a/english/aspose.cells/calculationdata/_index.md b/english/aspose.cells/calculationdata/_index.md index 3fb3400cd7..585728dbb9 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: 120 +weight: 130 url: /aspose.cells/calculationdata/ is_root: false --- diff --git a/english/aspose.cells/calculationoptions/_index.md b/english/aspose.cells/calculationoptions/_index.md index 161523635d..efe79f2688 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: 130 +weight: 140 url: /aspose.cells/calculationoptions/ is_root: false --- diff --git a/english/aspose.cells/calculationprecisionstrategy/_index.md b/english/aspose.cells/calculationprecisionstrategy/_index.md index 3b4844c1ca..c4cc4e6dc9 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: 1920 +weight: 1930 url: /aspose.cells/calculationprecisionstrategy/ is_root: false --- diff --git a/english/aspose.cells/cell/_index.md b/english/aspose.cells/cell/_index.md index 8cdac47c24..15dfe2bc2e 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: 140 +weight: 150 url: /aspose.cells/cell/ is_root: false --- diff --git a/english/aspose.cells/cellarea/_index.md b/english/aspose.cells/cellarea/_index.md index 097798e80b..c2decae61a 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: 150 +weight: 160 url: /aspose.cells/cellarea/ is_root: false --- diff --git a/english/aspose.cells/cellbordertype/_index.md b/english/aspose.cells/cellbordertype/_index.md index fbea712ef7..954efbf478 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: 1930 +weight: 1940 url: /aspose.cells/cellbordertype/ is_root: false --- diff --git a/english/aspose.cells/cells/_index.md b/english/aspose.cells/cells/_index.md index 5c0fa8f200..c6bd2bd9f8 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: 190 +weight: 200 url: /aspose.cells/cells/ is_root: false --- @@ -72,6 +72,10 @@ The Cells type exposes the following members: | [merge](/cells/python-net/aspose.cells/cells/merge/#int-int-int-int) | Merges a specified range of cells into a single cell. | | [merge](/cells/python-net/aspose.cells/cells/merge/#int-int-int-int-bool) | Merges a specified range of cells into a single cell. | | [merge](/cells/python-net/aspose.cells/cells/merge/#int-int-int-int-bool-bool) | Merges a specified range of cells into a single cell. | +| [get_row_height](/cells/python-net/aspose.cells/cells/get_row_height/#int-bool-aspose.cells.CellsUnitType) | Gets original row's height. | +| [get_row_height](/cells/python-net/aspose.cells/cells/get_row_height/#int) | Gets the height of a specified row, in unit of points. | +| [get_column_width](/cells/python-net/aspose.cells/cells/get_column_width/#int-bool-aspose.cells.CellsUnitType) | Gets the column width. | +| [get_column_width](/cells/python-net/aspose.cells/cells/get_column_width/#int) | Gets the width(in unit of characters) of the specified column in normal view | | [get_column_width_pixel](/cells/python-net/aspose.cells/cells/get_column_width_pixel/#int) | Gets the width of the specified column in normal view, in units of pixel. | | [get_column_width_pixel](/cells/python-net/aspose.cells/cells/get_column_width_pixel/#int-bool) | Gets the width of the specified column in normal view, in units of pixel. | | [copy_columns](/cells/python-net/aspose.cells/cells/copy_columns/#aspose.cells.Cells-int-int-int-aspose.cells.PasteOptions) | Copies data and formats of a whole column. | @@ -155,16 +159,13 @@ The Cells type exposes the following members: | [unhide_column](/cells/python-net/aspose.cells/cells/unhide_column/#int-float) | Unhides a column | | [hide_columns](/cells/python-net/aspose.cells/cells/hide_columns/#int-int) | Hide multiple columns. | | [unhide_columns](/cells/python-net/aspose.cells/cells/unhide_columns/#int-int-float) | Unhide multiple columns. | -| [get_row_height](/cells/python-net/aspose.cells/cells/get_row_height/#int) | Gets the height of a specified row, in unit of points. | | [get_view_row_height](/cells/python-net/aspose.cells/cells/get_view_row_height/#int) | Gets the height of a specified row. | -| [get_row_height_pixel](/cells/python-net/aspose.cells/cells/get_row_height_pixel/#int) | Gets the height of a specified row in unit of pixel. | | [get_row_height_inch](/cells/python-net/aspose.cells/cells/get_row_height_inch/#int) | Gets the height of a specified row in unit of inches. | -| [get_view_row_height_inch](/cells/python-net/aspose.cells/cells/get_view_row_height_inch/#int) | Gets the height of a specified row in unit of inches. | +| [get_row_height_pixel](/cells/python-net/aspose.cells/cells/get_row_height_pixel/#int) | Gets the height of a specified row in unit of pixel. | | [set_column_width_pixel](/cells/python-net/aspose.cells/cells/set_column_width_pixel/#int-int) | Sets column width in unit of pixels in normal view. | | [set_column_width_inch](/cells/python-net/aspose.cells/cells/set_column_width_inch/#int-float) | Sets column width in unit of inches in normal view. | | [set_column_width](/cells/python-net/aspose.cells/cells/set_column_width/#int-float) | Sets the width of the specified column in normal view. | | [get_column_width_inch](/cells/python-net/aspose.cells/cells/get_column_width_inch/#int) | Gets the width of the specified column in normal view, in units of inches. | -| [get_column_width](/cells/python-net/aspose.cells/cells/get_column_width/#int) | Gets the width(in unit of characters) of the specified column in normal view | | [get_view_column_width_pixel](/cells/python-net/aspose.cells/cells/get_view_column_width_pixel/#int) | Get the width in different view type. | | [set_view_column_width_pixel](/cells/python-net/aspose.cells/cells/set_view_column_width_pixel/#int-int) | Sets the width of the column in different view. | | [get_last_data_row](/cells/python-net/aspose.cells/cells/get_last_data_row/#int) | Gets the last row index of cell which contains data in the specified column. | diff --git a/english/aspose.cells/cells/columns/_index.md b/english/aspose.cells/cells/columns/_index.md index 62ec5c3cf7..5037395089 100644 --- a/english/aspose.cells/cells/columns/_index.md +++ b/english/aspose.cells/cells/columns/_index.md @@ -3,7 +3,7 @@ title: columns property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 1020 +weight: 1010 url: /aspose.cells/cells/columns/ is_root: false --- diff --git a/english/aspose.cells/cells/count/_index.md b/english/aspose.cells/cells/count/_index.md index c97cd1ee5a..84b173a6ec 100644 --- a/english/aspose.cells/cells/count/_index.md +++ b/english/aspose.cells/cells/count/_index.md @@ -3,7 +3,7 @@ title: count property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 1030 +weight: 1020 url: /aspose.cells/cells/count/ is_root: false --- diff --git a/english/aspose.cells/cells/count_large/_index.md b/english/aspose.cells/cells/count_large/_index.md index c4d56a10d8..c13e4a9330 100644 --- a/english/aspose.cells/cells/count_large/_index.md +++ b/english/aspose.cells/cells/count_large/_index.md @@ -3,7 +3,7 @@ title: count_large property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 1040 +weight: 1030 url: /aspose.cells/cells/count_large/ is_root: false --- diff --git a/english/aspose.cells/cells/first_cell/_index.md b/english/aspose.cells/cells/first_cell/_index.md index 6567818fff..a09ad49ee9 100644 --- a/english/aspose.cells/cells/first_cell/_index.md +++ b/english/aspose.cells/cells/first_cell/_index.md @@ -3,7 +3,7 @@ title: first_cell property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 1050 +weight: 1040 url: /aspose.cells/cells/first_cell/ is_root: false --- diff --git a/english/aspose.cells/cells/get_column_original_width_point/_index.md b/english/aspose.cells/cells/get_column_original_width_point/_index.md index b8e766d27d..4dea847217 100644 --- a/english/aspose.cells/cells/get_column_original_width_point/_index.md +++ b/english/aspose.cells/cells/get_column_original_width_point/_index.md @@ -28,7 +28,12 @@ def get_column_original_width_point(self, column): | Parameter | Type | Description | | :- | :- | :- | | column | int | The row index. | +### Remarks +NOTE: This method is now obsolete. Instead, +please use Cells.GetColumnWidth(int ,bool , CellsUnitType ) method. +This method will be removed 12 months later since April 2024. +Aspose apologizes for any inconvenience you may have experienced. ### See Also diff --git a/english/aspose.cells/cells/get_column_width/_index.md b/english/aspose.cells/cells/get_column_width/_index.md index 3b907fb204..84ab21da08 100644 --- a/english/aspose.cells/cells/get_column_width/_index.md +++ b/english/aspose.cells/cells/get_column_width/_index.md @@ -31,6 +31,30 @@ def get_column_width(self, column): | column | int | Column index | +## get_column_width {#int-bool-aspose.cells.CellsUnitType} + +Gets the column width. + + +### Returns + + + + + +```python +def get_column_width(self, column, is_original, unit_type): + ... +``` + + +| Parameter | Type | Description | +| :- | :- | :- | +| column | int | The column index. | +| is_original | bool | Indicates whether getting original width. | +| unit_type | [`CellsUnitType`](/cells/python-net/aspose.cells/cellsunittype) | | + + ### See Also * module [`aspose.cells`](../../) diff --git a/english/aspose.cells/cells/get_column_width_inch/_index.md b/english/aspose.cells/cells/get_column_width_inch/_index.md index 2c4f2ea9ec..086db47dbb 100644 --- a/english/aspose.cells/cells/get_column_width_inch/_index.md +++ b/english/aspose.cells/cells/get_column_width_inch/_index.md @@ -28,7 +28,12 @@ def get_column_width_inch(self, column): | Parameter | Type | Description | | :- | :- | :- | | column | int | Column index | +### Remarks +NOTE: This method is now obsolete. Instead, +please use Cells.GetColumnWidth(int ,bool , CellsUnitType ) method. +This method will be removed 12 months later since April 2024. +Aspose apologizes for any inconvenience you may have experienced. ### See Also diff --git a/english/aspose.cells/cells/get_column_width_pixel/_index.md b/english/aspose.cells/cells/get_column_width_pixel/_index.md index 7a1a3ffd45..af9ad6d7ee 100644 --- a/english/aspose.cells/cells/get_column_width_pixel/_index.md +++ b/english/aspose.cells/cells/get_column_width_pixel/_index.md @@ -51,7 +51,12 @@ def get_column_width_pixel(self, column, original): | :- | :- | :- | | column | int | Column index | | original | bool | Indicates whether returning original width even when the column is hidden | +### Remarks +NOTE: This method is now obsolete. Instead, +please use Cells.GetColumnWidth(int ,bool , CellsUnitType ) method. +This method will be removed 12 months later since April 2024. +Aspose apologizes for any inconvenience you may have experienced. ### See Also diff --git a/english/aspose.cells/cells/get_row_height/_index.md b/english/aspose.cells/cells/get_row_height/_index.md index bcfe0dad52..625b9a4b14 100644 --- a/english/aspose.cells/cells/get_row_height/_index.md +++ b/english/aspose.cells/cells/get_row_height/_index.md @@ -30,6 +30,30 @@ def get_row_height(self, row): | row | int | Row index | +## get_row_height {#int-bool-aspose.cells.CellsUnitType} + +Gets original row's height. + + +### Returns + + + + + +```python +def get_row_height(self, row, is_original, unit_type): + ... +``` + + +| Parameter | Type | Description | +| :- | :- | :- | +| row | int | The row index. | +| is_original | bool | | +| unit_type | [`CellsUnitType`](/cells/python-net/aspose.cells/cellsunittype) | | + + ### See Also * module [`aspose.cells`](../../) diff --git a/english/aspose.cells/cells/get_row_original_height_point/_index.md b/english/aspose.cells/cells/get_row_original_height_point/_index.md index f66a45b2cb..2c9bbcb266 100644 --- a/english/aspose.cells/cells/get_row_original_height_point/_index.md +++ b/english/aspose.cells/cells/get_row_original_height_point/_index.md @@ -28,7 +28,12 @@ def get_row_original_height_point(self, row): | Parameter | Type | Description | | :- | :- | :- | | row | int | The row index. | +### Remarks +NOTE: This member is now obsolete. Instead, +please use Cells.GetRowHeight(int,bool,CellsUnitType) method. +This method will be removed 12 months later since April 2024. +Aspose apologizes for any inconvenience you may have experienced. ### See Also diff --git a/english/aspose.cells/cells/group_columns/_index.md b/english/aspose.cells/cells/group_columns/_index.md index 259c286bc7..a0f461f8d4 100644 --- a/english/aspose.cells/cells/group_columns/_index.md +++ b/english/aspose.cells/cells/group_columns/_index.md @@ -3,7 +3,7 @@ title: group_columns method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 540 +weight: 530 url: /aspose.cells/cells/group_columns/ is_root: false --- diff --git a/english/aspose.cells/cells/group_rows/_index.md b/english/aspose.cells/cells/group_rows/_index.md index a825ee359b..9c29326479 100644 --- a/english/aspose.cells/cells/group_rows/_index.md +++ b/english/aspose.cells/cells/group_rows/_index.md @@ -3,7 +3,7 @@ title: group_rows method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 550 +weight: 540 url: /aspose.cells/cells/group_rows/ is_root: false --- diff --git a/english/aspose.cells/cells/hide_column/_index.md b/english/aspose.cells/cells/hide_column/_index.md index 8cffc96522..129a1d4d74 100644 --- a/english/aspose.cells/cells/hide_column/_index.md +++ b/english/aspose.cells/cells/hide_column/_index.md @@ -3,7 +3,7 @@ title: hide_column method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 560 +weight: 550 url: /aspose.cells/cells/hide_column/ is_root: false --- diff --git a/english/aspose.cells/cells/hide_columns/_index.md b/english/aspose.cells/cells/hide_columns/_index.md index 41b22e3c3e..96c2c3f99a 100644 --- a/english/aspose.cells/cells/hide_columns/_index.md +++ b/english/aspose.cells/cells/hide_columns/_index.md @@ -3,7 +3,7 @@ title: hide_columns method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 570 +weight: 560 url: /aspose.cells/cells/hide_columns/ is_root: false --- diff --git a/english/aspose.cells/cells/hide_group_detail/_index.md b/english/aspose.cells/cells/hide_group_detail/_index.md index 36bdcd973f..3246b3cb31 100644 --- a/english/aspose.cells/cells/hide_group_detail/_index.md +++ b/english/aspose.cells/cells/hide_group_detail/_index.md @@ -3,7 +3,7 @@ title: hide_group_detail method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 580 +weight: 570 url: /aspose.cells/cells/hide_group_detail/ is_root: false --- diff --git a/english/aspose.cells/cells/hide_row/_index.md b/english/aspose.cells/cells/hide_row/_index.md index d6b0ede753..d5fea1af1a 100644 --- a/english/aspose.cells/cells/hide_row/_index.md +++ b/english/aspose.cells/cells/hide_row/_index.md @@ -3,7 +3,7 @@ title: hide_row method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 590 +weight: 580 url: /aspose.cells/cells/hide_row/ is_root: false --- diff --git a/english/aspose.cells/cells/hide_rows/_index.md b/english/aspose.cells/cells/hide_rows/_index.md index 7a902f5c31..e052d1a619 100644 --- a/english/aspose.cells/cells/hide_rows/_index.md +++ b/english/aspose.cells/cells/hide_rows/_index.md @@ -3,7 +3,7 @@ title: hide_rows method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 600 +weight: 590 url: /aspose.cells/cells/hide_rows/ is_root: false --- diff --git a/english/aspose.cells/cells/import_array/_index.md b/english/aspose.cells/cells/import_array/_index.md index 33dbae270f..e56fdb3700 100644 --- a/english/aspose.cells/cells/import_array/_index.md +++ b/english/aspose.cells/cells/import_array/_index.md @@ -3,7 +3,7 @@ title: import_array method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 610 +weight: 600 url: /aspose.cells/cells/import_array/ is_root: false --- diff --git a/english/aspose.cells/cells/import_array_list/_index.md b/english/aspose.cells/cells/import_array_list/_index.md index 3804478c4e..d51ffd93ae 100644 --- a/english/aspose.cells/cells/import_array_list/_index.md +++ b/english/aspose.cells/cells/import_array_list/_index.md @@ -3,7 +3,7 @@ title: import_array_list method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 620 +weight: 610 url: /aspose.cells/cells/import_array_list/ is_root: false --- diff --git a/english/aspose.cells/cells/import_csv/_index.md b/english/aspose.cells/cells/import_csv/_index.md index 660304a4a0..f33baeef8a 100644 --- a/english/aspose.cells/cells/import_csv/_index.md +++ b/english/aspose.cells/cells/import_csv/_index.md @@ -3,7 +3,7 @@ title: import_csv method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 630 +weight: 620 url: /aspose.cells/cells/import_csv/ is_root: false --- diff --git a/english/aspose.cells/cells/import_custom_objects/_index.md b/english/aspose.cells/cells/import_custom_objects/_index.md index b8b8eef7ac..f4369284cd 100644 --- a/english/aspose.cells/cells/import_custom_objects/_index.md +++ b/english/aspose.cells/cells/import_custom_objects/_index.md @@ -3,7 +3,7 @@ title: import_custom_objects method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 640 +weight: 630 url: /aspose.cells/cells/import_custom_objects/ is_root: false --- diff --git a/english/aspose.cells/cells/import_data/_index.md b/english/aspose.cells/cells/import_data/_index.md index d34cc63068..80809bbaad 100644 --- a/english/aspose.cells/cells/import_data/_index.md +++ b/english/aspose.cells/cells/import_data/_index.md @@ -3,7 +3,7 @@ title: import_data method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 650 +weight: 640 url: /aspose.cells/cells/import_data/ is_root: false --- diff --git a/english/aspose.cells/cells/import_formula_array/_index.md b/english/aspose.cells/cells/import_formula_array/_index.md index 4ba3275723..7707dbee92 100644 --- a/english/aspose.cells/cells/import_formula_array/_index.md +++ b/english/aspose.cells/cells/import_formula_array/_index.md @@ -3,7 +3,7 @@ title: import_formula_array method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 660 +weight: 650 url: /aspose.cells/cells/import_formula_array/ is_root: false --- diff --git a/english/aspose.cells/cells/import_object_array/_index.md b/english/aspose.cells/cells/import_object_array/_index.md index efab19d10d..1545ff7a7e 100644 --- a/english/aspose.cells/cells/import_object_array/_index.md +++ b/english/aspose.cells/cells/import_object_array/_index.md @@ -3,7 +3,7 @@ title: import_object_array method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 670 +weight: 660 url: /aspose.cells/cells/import_object_array/ is_root: false --- diff --git a/english/aspose.cells/cells/insert_column/_index.md b/english/aspose.cells/cells/insert_column/_index.md index be9ac08159..3b3fd143bf 100644 --- a/english/aspose.cells/cells/insert_column/_index.md +++ b/english/aspose.cells/cells/insert_column/_index.md @@ -3,7 +3,7 @@ title: insert_column method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 680 +weight: 670 url: /aspose.cells/cells/insert_column/ is_root: false --- diff --git a/english/aspose.cells/cells/insert_columns/_index.md b/english/aspose.cells/cells/insert_columns/_index.md index a597e051d9..d88309d27a 100644 --- a/english/aspose.cells/cells/insert_columns/_index.md +++ b/english/aspose.cells/cells/insert_columns/_index.md @@ -3,7 +3,7 @@ title: insert_columns method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 690 +weight: 680 url: /aspose.cells/cells/insert_columns/ is_root: false --- diff --git a/english/aspose.cells/cells/insert_cut_cells/_index.md b/english/aspose.cells/cells/insert_cut_cells/_index.md index 375e73b7b9..4ea04650ce 100644 --- a/english/aspose.cells/cells/insert_cut_cells/_index.md +++ b/english/aspose.cells/cells/insert_cut_cells/_index.md @@ -3,7 +3,7 @@ title: insert_cut_cells method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 700 +weight: 690 url: /aspose.cells/cells/insert_cut_cells/ is_root: false --- diff --git a/english/aspose.cells/cells/insert_range/_index.md b/english/aspose.cells/cells/insert_range/_index.md index d95c275bd2..ace16b43f1 100644 --- a/english/aspose.cells/cells/insert_range/_index.md +++ b/english/aspose.cells/cells/insert_range/_index.md @@ -3,7 +3,7 @@ title: insert_range method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 710 +weight: 700 url: /aspose.cells/cells/insert_range/ is_root: false --- diff --git a/english/aspose.cells/cells/insert_row/_index.md b/english/aspose.cells/cells/insert_row/_index.md index e40909ff13..db7a9e464d 100644 --- a/english/aspose.cells/cells/insert_row/_index.md +++ b/english/aspose.cells/cells/insert_row/_index.md @@ -3,7 +3,7 @@ title: insert_row method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 720 +weight: 710 url: /aspose.cells/cells/insert_row/ is_root: false --- diff --git a/english/aspose.cells/cells/insert_rows/_index.md b/english/aspose.cells/cells/insert_rows/_index.md index cbe995b876..1f2b380854 100644 --- a/english/aspose.cells/cells/insert_rows/_index.md +++ b/english/aspose.cells/cells/insert_rows/_index.md @@ -3,7 +3,7 @@ title: insert_rows method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 730 +weight: 720 url: /aspose.cells/cells/insert_rows/ is_root: false --- diff --git a/english/aspose.cells/cells/is_blank_column/_index.md b/english/aspose.cells/cells/is_blank_column/_index.md index 0fee255ea5..2921063d6e 100644 --- a/english/aspose.cells/cells/is_blank_column/_index.md +++ b/english/aspose.cells/cells/is_blank_column/_index.md @@ -3,7 +3,7 @@ title: is_blank_column method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 740 +weight: 730 url: /aspose.cells/cells/is_blank_column/ is_root: false --- diff --git a/english/aspose.cells/cells/is_column_hidden/_index.md b/english/aspose.cells/cells/is_column_hidden/_index.md index 4ec257854d..3fa42885fa 100644 --- a/english/aspose.cells/cells/is_column_hidden/_index.md +++ b/english/aspose.cells/cells/is_column_hidden/_index.md @@ -3,7 +3,7 @@ title: is_column_hidden method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 750 +weight: 740 url: /aspose.cells/cells/is_column_hidden/ is_root: false --- diff --git a/english/aspose.cells/cells/is_default_row_height_matched/_index.md b/english/aspose.cells/cells/is_default_row_height_matched/_index.md index debaed4841..72c1623e1f 100644 --- a/english/aspose.cells/cells/is_default_row_height_matched/_index.md +++ b/english/aspose.cells/cells/is_default_row_height_matched/_index.md @@ -3,7 +3,7 @@ title: is_default_row_height_matched property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 1060 +weight: 1050 url: /aspose.cells/cells/is_default_row_height_matched/ is_root: false --- diff --git a/english/aspose.cells/cells/is_default_row_hidden/_index.md b/english/aspose.cells/cells/is_default_row_hidden/_index.md index 465d004d9b..972f7181f7 100644 --- a/english/aspose.cells/cells/is_default_row_hidden/_index.md +++ b/english/aspose.cells/cells/is_default_row_hidden/_index.md @@ -3,7 +3,7 @@ title: is_default_row_hidden property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 1070 +weight: 1060 url: /aspose.cells/cells/is_default_row_hidden/ is_root: false --- diff --git a/english/aspose.cells/cells/is_deleting_range_enabled/_index.md b/english/aspose.cells/cells/is_deleting_range_enabled/_index.md index 8f92d88999..b1f822509f 100644 --- a/english/aspose.cells/cells/is_deleting_range_enabled/_index.md +++ b/english/aspose.cells/cells/is_deleting_range_enabled/_index.md @@ -3,7 +3,7 @@ title: is_deleting_range_enabled method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 760 +weight: 750 url: /aspose.cells/cells/is_deleting_range_enabled/ is_root: false --- diff --git a/english/aspose.cells/cells/is_row_hidden/_index.md b/english/aspose.cells/cells/is_row_hidden/_index.md index 167de01778..7699b7ddea 100644 --- a/english/aspose.cells/cells/is_row_hidden/_index.md +++ b/english/aspose.cells/cells/is_row_hidden/_index.md @@ -3,7 +3,7 @@ title: is_row_hidden method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 770 +weight: 760 url: /aspose.cells/cells/is_row_hidden/ is_root: false --- diff --git a/english/aspose.cells/cells/last_cell/_index.md b/english/aspose.cells/cells/last_cell/_index.md index d428befc0b..62e0d22e77 100644 --- a/english/aspose.cells/cells/last_cell/_index.md +++ b/english/aspose.cells/cells/last_cell/_index.md @@ -3,7 +3,7 @@ title: last_cell property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 1080 +weight: 1070 url: /aspose.cells/cells/last_cell/ is_root: false --- diff --git a/english/aspose.cells/cells/link_to_xml_map/_index.md b/english/aspose.cells/cells/link_to_xml_map/_index.md index 214b4bee5f..ba5b648d59 100644 --- a/english/aspose.cells/cells/link_to_xml_map/_index.md +++ b/english/aspose.cells/cells/link_to_xml_map/_index.md @@ -3,7 +3,7 @@ title: link_to_xml_map method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 780 +weight: 770 url: /aspose.cells/cells/link_to_xml_map/ is_root: false --- diff --git a/english/aspose.cells/cells/max_column/_index.md b/english/aspose.cells/cells/max_column/_index.md index 55c3a033a7..76bad1576e 100644 --- a/english/aspose.cells/cells/max_column/_index.md +++ b/english/aspose.cells/cells/max_column/_index.md @@ -3,7 +3,7 @@ title: max_column property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 1090 +weight: 1080 url: /aspose.cells/cells/max_column/ is_root: false --- diff --git a/english/aspose.cells/cells/max_data_column/_index.md b/english/aspose.cells/cells/max_data_column/_index.md index 33eb74d05e..3ebf9e612b 100644 --- a/english/aspose.cells/cells/max_data_column/_index.md +++ b/english/aspose.cells/cells/max_data_column/_index.md @@ -3,7 +3,7 @@ title: max_data_column property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 1100 +weight: 1090 url: /aspose.cells/cells/max_data_column/ is_root: false --- diff --git a/english/aspose.cells/cells/max_data_row/_index.md b/english/aspose.cells/cells/max_data_row/_index.md index 1485087ff7..27ab128b0b 100644 --- a/english/aspose.cells/cells/max_data_row/_index.md +++ b/english/aspose.cells/cells/max_data_row/_index.md @@ -3,7 +3,7 @@ title: max_data_row property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 1110 +weight: 1100 url: /aspose.cells/cells/max_data_row/ is_root: false --- diff --git a/english/aspose.cells/cells/max_display_range/_index.md b/english/aspose.cells/cells/max_display_range/_index.md index 0513eb25db..247ded11cf 100644 --- a/english/aspose.cells/cells/max_display_range/_index.md +++ b/english/aspose.cells/cells/max_display_range/_index.md @@ -3,7 +3,7 @@ title: max_display_range property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 1120 +weight: 1110 url: /aspose.cells/cells/max_display_range/ is_root: false --- diff --git a/english/aspose.cells/cells/max_row/_index.md b/english/aspose.cells/cells/max_row/_index.md index b08d0bc733..6cb6858278 100644 --- a/english/aspose.cells/cells/max_row/_index.md +++ b/english/aspose.cells/cells/max_row/_index.md @@ -3,7 +3,7 @@ title: max_row property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 1130 +weight: 1120 url: /aspose.cells/cells/max_row/ is_root: false --- diff --git a/english/aspose.cells/cells/memory_setting/_index.md b/english/aspose.cells/cells/memory_setting/_index.md index a72c08a6d8..f8648b580b 100644 --- a/english/aspose.cells/cells/memory_setting/_index.md +++ b/english/aspose.cells/cells/memory_setting/_index.md @@ -3,7 +3,7 @@ title: memory_setting property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 1140 +weight: 1130 url: /aspose.cells/cells/memory_setting/ is_root: false --- diff --git a/english/aspose.cells/cells/merge/_index.md b/english/aspose.cells/cells/merge/_index.md index fecacd5dcc..c6c951c44a 100644 --- a/english/aspose.cells/cells/merge/_index.md +++ b/english/aspose.cells/cells/merge/_index.md @@ -3,7 +3,7 @@ title: merge method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 790 +weight: 780 url: /aspose.cells/cells/merge/ is_root: false --- diff --git a/english/aspose.cells/cells/merged_cells/_index.md b/english/aspose.cells/cells/merged_cells/_index.md index 704cb78302..d4624c596c 100644 --- a/english/aspose.cells/cells/merged_cells/_index.md +++ b/english/aspose.cells/cells/merged_cells/_index.md @@ -3,7 +3,7 @@ title: merged_cells property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 1150 +weight: 1140 url: /aspose.cells/cells/merged_cells/ is_root: false --- diff --git a/english/aspose.cells/cells/min_column/_index.md b/english/aspose.cells/cells/min_column/_index.md index fdcb7d2a42..d696444d3d 100644 --- a/english/aspose.cells/cells/min_column/_index.md +++ b/english/aspose.cells/cells/min_column/_index.md @@ -3,7 +3,7 @@ title: min_column property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 1160 +weight: 1150 url: /aspose.cells/cells/min_column/ is_root: false --- diff --git a/english/aspose.cells/cells/min_data_column/_index.md b/english/aspose.cells/cells/min_data_column/_index.md index 89907e2368..1c1b651382 100644 --- a/english/aspose.cells/cells/min_data_column/_index.md +++ b/english/aspose.cells/cells/min_data_column/_index.md @@ -3,7 +3,7 @@ title: min_data_column property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 1170 +weight: 1160 url: /aspose.cells/cells/min_data_column/ is_root: false --- diff --git a/english/aspose.cells/cells/min_data_row/_index.md b/english/aspose.cells/cells/min_data_row/_index.md index 0e5ce4092a..cccb5dd10f 100644 --- a/english/aspose.cells/cells/min_data_row/_index.md +++ b/english/aspose.cells/cells/min_data_row/_index.md @@ -3,7 +3,7 @@ title: min_data_row property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 1180 +weight: 1170 url: /aspose.cells/cells/min_data_row/ is_root: false --- diff --git a/english/aspose.cells/cells/min_row/_index.md b/english/aspose.cells/cells/min_row/_index.md index c49fbc80d4..5733048fa1 100644 --- a/english/aspose.cells/cells/min_row/_index.md +++ b/english/aspose.cells/cells/min_row/_index.md @@ -3,7 +3,7 @@ title: min_row property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 1190 +weight: 1180 url: /aspose.cells/cells/min_row/ is_root: false --- diff --git a/english/aspose.cells/cells/move_range/_index.md b/english/aspose.cells/cells/move_range/_index.md index aa7b3309d2..b2658a9191 100644 --- a/english/aspose.cells/cells/move_range/_index.md +++ b/english/aspose.cells/cells/move_range/_index.md @@ -3,7 +3,7 @@ title: move_range method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 800 +weight: 790 url: /aspose.cells/cells/move_range/ is_root: false --- diff --git a/english/aspose.cells/cells/multi_thread_reading/_index.md b/english/aspose.cells/cells/multi_thread_reading/_index.md index 3b869bc7de..2f681739a9 100644 --- a/english/aspose.cells/cells/multi_thread_reading/_index.md +++ b/english/aspose.cells/cells/multi_thread_reading/_index.md @@ -3,7 +3,7 @@ title: multi_thread_reading property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 1200 +weight: 1190 url: /aspose.cells/cells/multi_thread_reading/ is_root: false --- diff --git a/english/aspose.cells/cells/ods_cell_fields/_index.md b/english/aspose.cells/cells/ods_cell_fields/_index.md index 7b49321278..e67b6e72e4 100644 --- a/english/aspose.cells/cells/ods_cell_fields/_index.md +++ b/english/aspose.cells/cells/ods_cell_fields/_index.md @@ -3,7 +3,7 @@ title: ods_cell_fields property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 1210 +weight: 1200 url: /aspose.cells/cells/ods_cell_fields/ is_root: false --- diff --git a/english/aspose.cells/cells/preserve_string/_index.md b/english/aspose.cells/cells/preserve_string/_index.md index c9953ff7b4..4c2546a739 100644 --- a/english/aspose.cells/cells/preserve_string/_index.md +++ b/english/aspose.cells/cells/preserve_string/_index.md @@ -3,7 +3,7 @@ title: preserve_string property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 1220 +weight: 1210 url: /aspose.cells/cells/preserve_string/ is_root: false --- diff --git a/english/aspose.cells/cells/ranges/_index.md b/english/aspose.cells/cells/ranges/_index.md index 3c63627665..31ff3f10ea 100644 --- a/english/aspose.cells/cells/ranges/_index.md +++ b/english/aspose.cells/cells/ranges/_index.md @@ -3,7 +3,7 @@ title: ranges property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 1230 +weight: 1220 url: /aspose.cells/cells/ranges/ is_root: false --- diff --git a/english/aspose.cells/cells/remove_duplicates/_index.md b/english/aspose.cells/cells/remove_duplicates/_index.md index 1ee5c4e9c9..1f52762fed 100644 --- a/english/aspose.cells/cells/remove_duplicates/_index.md +++ b/english/aspose.cells/cells/remove_duplicates/_index.md @@ -3,7 +3,7 @@ title: remove_duplicates method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 810 +weight: 800 url: /aspose.cells/cells/remove_duplicates/ is_root: false --- diff --git a/english/aspose.cells/cells/remove_formulas/_index.md b/english/aspose.cells/cells/remove_formulas/_index.md index 64c3f506a0..fd462445e2 100644 --- a/english/aspose.cells/cells/remove_formulas/_index.md +++ b/english/aspose.cells/cells/remove_formulas/_index.md @@ -3,7 +3,7 @@ title: remove_formulas method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 820 +weight: 810 url: /aspose.cells/cells/remove_formulas/ is_root: false --- diff --git a/english/aspose.cells/cells/retrieve_subtotal_setting/_index.md b/english/aspose.cells/cells/retrieve_subtotal_setting/_index.md index 03c793960d..3b3ad6d7c7 100644 --- a/english/aspose.cells/cells/retrieve_subtotal_setting/_index.md +++ b/english/aspose.cells/cells/retrieve_subtotal_setting/_index.md @@ -3,7 +3,7 @@ title: retrieve_subtotal_setting method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 830 +weight: 820 url: /aspose.cells/cells/retrieve_subtotal_setting/ is_root: false --- diff --git a/english/aspose.cells/cells/rows/_index.md b/english/aspose.cells/cells/rows/_index.md index 33dc74af39..6fa64a8ccc 100644 --- a/english/aspose.cells/cells/rows/_index.md +++ b/english/aspose.cells/cells/rows/_index.md @@ -3,7 +3,7 @@ title: rows property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 1240 +weight: 1230 url: /aspose.cells/cells/rows/ is_root: false --- diff --git a/english/aspose.cells/cells/set_column_width/_index.md b/english/aspose.cells/cells/set_column_width/_index.md index 1d7f27f165..58fb4eac71 100644 --- a/english/aspose.cells/cells/set_column_width/_index.md +++ b/english/aspose.cells/cells/set_column_width/_index.md @@ -3,7 +3,7 @@ title: set_column_width method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 840 +weight: 830 url: /aspose.cells/cells/set_column_width/ is_root: false --- diff --git a/english/aspose.cells/cells/set_column_width_inch/_index.md b/english/aspose.cells/cells/set_column_width_inch/_index.md index 55c7f6b07e..a9d2fe2da9 100644 --- a/english/aspose.cells/cells/set_column_width_inch/_index.md +++ b/english/aspose.cells/cells/set_column_width_inch/_index.md @@ -3,7 +3,7 @@ title: set_column_width_inch method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 850 +weight: 840 url: /aspose.cells/cells/set_column_width_inch/ is_root: false --- diff --git a/english/aspose.cells/cells/set_column_width_pixel/_index.md b/english/aspose.cells/cells/set_column_width_pixel/_index.md index 242190ec81..2492aa1e6e 100644 --- a/english/aspose.cells/cells/set_column_width_pixel/_index.md +++ b/english/aspose.cells/cells/set_column_width_pixel/_index.md @@ -3,7 +3,7 @@ title: set_column_width_pixel method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 860 +weight: 850 url: /aspose.cells/cells/set_column_width_pixel/ is_root: false --- diff --git a/english/aspose.cells/cells/set_row_height/_index.md b/english/aspose.cells/cells/set_row_height/_index.md index 20c7e5fbc7..d657a6d479 100644 --- a/english/aspose.cells/cells/set_row_height/_index.md +++ b/english/aspose.cells/cells/set_row_height/_index.md @@ -3,7 +3,7 @@ title: set_row_height method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 870 +weight: 860 url: /aspose.cells/cells/set_row_height/ is_root: false --- diff --git a/english/aspose.cells/cells/set_row_height_inch/_index.md b/english/aspose.cells/cells/set_row_height_inch/_index.md index f4fa75ec3e..55bedb9a38 100644 --- a/english/aspose.cells/cells/set_row_height_inch/_index.md +++ b/english/aspose.cells/cells/set_row_height_inch/_index.md @@ -3,7 +3,7 @@ title: set_row_height_inch method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 880 +weight: 870 url: /aspose.cells/cells/set_row_height_inch/ is_root: false --- diff --git a/english/aspose.cells/cells/set_row_height_pixel/_index.md b/english/aspose.cells/cells/set_row_height_pixel/_index.md index f64accdeb0..8619d4f544 100644 --- a/english/aspose.cells/cells/set_row_height_pixel/_index.md +++ b/english/aspose.cells/cells/set_row_height_pixel/_index.md @@ -3,7 +3,7 @@ title: set_row_height_pixel method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 890 +weight: 880 url: /aspose.cells/cells/set_row_height_pixel/ is_root: false --- diff --git a/english/aspose.cells/cells/set_view_column_width_pixel/_index.md b/english/aspose.cells/cells/set_view_column_width_pixel/_index.md index 9141993af7..d0a382e98e 100644 --- a/english/aspose.cells/cells/set_view_column_width_pixel/_index.md +++ b/english/aspose.cells/cells/set_view_column_width_pixel/_index.md @@ -3,7 +3,7 @@ title: set_view_column_width_pixel method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 900 +weight: 890 url: /aspose.cells/cells/set_view_column_width_pixel/ is_root: false --- diff --git a/english/aspose.cells/cells/show_group_detail/_index.md b/english/aspose.cells/cells/show_group_detail/_index.md index 2ba907b9de..e9902d6903 100644 --- a/english/aspose.cells/cells/show_group_detail/_index.md +++ b/english/aspose.cells/cells/show_group_detail/_index.md @@ -3,7 +3,7 @@ title: show_group_detail method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 910 +weight: 900 url: /aspose.cells/cells/show_group_detail/ is_root: false --- diff --git a/english/aspose.cells/cells/standard_height/_index.md b/english/aspose.cells/cells/standard_height/_index.md index 86c1acccea..7f946bb266 100644 --- a/english/aspose.cells/cells/standard_height/_index.md +++ b/english/aspose.cells/cells/standard_height/_index.md @@ -3,7 +3,7 @@ title: standard_height property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 1250 +weight: 1240 url: /aspose.cells/cells/standard_height/ is_root: false --- diff --git a/english/aspose.cells/cells/standard_height_inch/_index.md b/english/aspose.cells/cells/standard_height_inch/_index.md index 9789ce08d6..c310788e2d 100644 --- a/english/aspose.cells/cells/standard_height_inch/_index.md +++ b/english/aspose.cells/cells/standard_height_inch/_index.md @@ -3,7 +3,7 @@ title: standard_height_inch property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 1260 +weight: 1250 url: /aspose.cells/cells/standard_height_inch/ is_root: false --- diff --git a/english/aspose.cells/cells/standard_height_pixels/_index.md b/english/aspose.cells/cells/standard_height_pixels/_index.md index 6c23c366e6..ba22aec675 100644 --- a/english/aspose.cells/cells/standard_height_pixels/_index.md +++ b/english/aspose.cells/cells/standard_height_pixels/_index.md @@ -3,7 +3,7 @@ title: standard_height_pixels property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 1270 +weight: 1260 url: /aspose.cells/cells/standard_height_pixels/ is_root: false --- diff --git a/english/aspose.cells/cells/standard_width/_index.md b/english/aspose.cells/cells/standard_width/_index.md index 859c097c5a..ca442641aa 100644 --- a/english/aspose.cells/cells/standard_width/_index.md +++ b/english/aspose.cells/cells/standard_width/_index.md @@ -3,7 +3,7 @@ title: standard_width property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 1280 +weight: 1270 url: /aspose.cells/cells/standard_width/ is_root: false --- diff --git a/english/aspose.cells/cells/standard_width_inch/_index.md b/english/aspose.cells/cells/standard_width_inch/_index.md index ffe40df9f3..56ec151c7d 100644 --- a/english/aspose.cells/cells/standard_width_inch/_index.md +++ b/english/aspose.cells/cells/standard_width_inch/_index.md @@ -3,7 +3,7 @@ title: standard_width_inch property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 1290 +weight: 1280 url: /aspose.cells/cells/standard_width_inch/ is_root: false --- diff --git a/english/aspose.cells/cells/standard_width_pixels/_index.md b/english/aspose.cells/cells/standard_width_pixels/_index.md index 7fa3d1e225..4c34645ff4 100644 --- a/english/aspose.cells/cells/standard_width_pixels/_index.md +++ b/english/aspose.cells/cells/standard_width_pixels/_index.md @@ -3,7 +3,7 @@ title: standard_width_pixels property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 1300 +weight: 1290 url: /aspose.cells/cells/standard_width_pixels/ is_root: false --- diff --git a/english/aspose.cells/cells/style/_index.md b/english/aspose.cells/cells/style/_index.md index 97557c83cf..e1d826c731 100644 --- a/english/aspose.cells/cells/style/_index.md +++ b/english/aspose.cells/cells/style/_index.md @@ -3,7 +3,7 @@ title: style property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 1310 +weight: 1300 url: /aspose.cells/cells/style/ is_root: false --- diff --git a/english/aspose.cells/cells/subtotal/_index.md b/english/aspose.cells/cells/subtotal/_index.md index b1f02ee150..143a133814 100644 --- a/english/aspose.cells/cells/subtotal/_index.md +++ b/english/aspose.cells/cells/subtotal/_index.md @@ -3,7 +3,7 @@ title: subtotal method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 920 +weight: 910 url: /aspose.cells/cells/subtotal/ is_root: false --- diff --git a/english/aspose.cells/cells/text_to_columns/_index.md b/english/aspose.cells/cells/text_to_columns/_index.md index 9ee00d9f23..f3f1b971f3 100644 --- a/english/aspose.cells/cells/text_to_columns/_index.md +++ b/english/aspose.cells/cells/text_to_columns/_index.md @@ -3,7 +3,7 @@ title: text_to_columns method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 930 +weight: 920 url: /aspose.cells/cells/text_to_columns/ is_root: false --- diff --git a/english/aspose.cells/cells/un_merge/_index.md b/english/aspose.cells/cells/un_merge/_index.md index 92f5a0d11d..07cdf9d646 100644 --- a/english/aspose.cells/cells/un_merge/_index.md +++ b/english/aspose.cells/cells/un_merge/_index.md @@ -3,7 +3,7 @@ title: un_merge method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 940 +weight: 930 url: /aspose.cells/cells/un_merge/ is_root: false --- diff --git a/english/aspose.cells/cells/ungroup_columns/_index.md b/english/aspose.cells/cells/ungroup_columns/_index.md index 649c28fbd3..5cb49a4a5e 100644 --- a/english/aspose.cells/cells/ungroup_columns/_index.md +++ b/english/aspose.cells/cells/ungroup_columns/_index.md @@ -3,7 +3,7 @@ title: ungroup_columns method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 950 +weight: 940 url: /aspose.cells/cells/ungroup_columns/ is_root: false --- diff --git a/english/aspose.cells/cells/ungroup_rows/_index.md b/english/aspose.cells/cells/ungroup_rows/_index.md index 79a7bc2f39..eeb2226a7c 100644 --- a/english/aspose.cells/cells/ungroup_rows/_index.md +++ b/english/aspose.cells/cells/ungroup_rows/_index.md @@ -3,7 +3,7 @@ title: ungroup_rows method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 960 +weight: 950 url: /aspose.cells/cells/ungroup_rows/ is_root: false --- diff --git a/english/aspose.cells/cells/unhide_column/_index.md b/english/aspose.cells/cells/unhide_column/_index.md index fd80653811..dce30954a6 100644 --- a/english/aspose.cells/cells/unhide_column/_index.md +++ b/english/aspose.cells/cells/unhide_column/_index.md @@ -3,7 +3,7 @@ title: unhide_column method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 970 +weight: 960 url: /aspose.cells/cells/unhide_column/ is_root: false --- diff --git a/english/aspose.cells/cells/unhide_columns/_index.md b/english/aspose.cells/cells/unhide_columns/_index.md index 3de7df265d..83896b81b0 100644 --- a/english/aspose.cells/cells/unhide_columns/_index.md +++ b/english/aspose.cells/cells/unhide_columns/_index.md @@ -3,7 +3,7 @@ title: unhide_columns method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 980 +weight: 970 url: /aspose.cells/cells/unhide_columns/ is_root: false --- diff --git a/english/aspose.cells/cells/unhide_row/_index.md b/english/aspose.cells/cells/unhide_row/_index.md index 7e52f96039..862ec86371 100644 --- a/english/aspose.cells/cells/unhide_row/_index.md +++ b/english/aspose.cells/cells/unhide_row/_index.md @@ -3,7 +3,7 @@ title: unhide_row method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 990 +weight: 980 url: /aspose.cells/cells/unhide_row/ is_root: false --- diff --git a/english/aspose.cells/cells/unhide_rows/_index.md b/english/aspose.cells/cells/unhide_rows/_index.md index cd621a466f..9d420bc845 100644 --- a/english/aspose.cells/cells/unhide_rows/_index.md +++ b/english/aspose.cells/cells/unhide_rows/_index.md @@ -3,7 +3,7 @@ title: unhide_rows method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 1000 +weight: 990 url: /aspose.cells/cells/unhide_rows/ is_root: false --- diff --git a/english/aspose.cells/cellscolor/_index.md b/english/aspose.cells/cellscolor/_index.md index 7879267c47..f9f066e455 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: 200 +weight: 210 url: /aspose.cells/cellscolor/ is_root: false --- diff --git a/english/aspose.cells/cellsdatatablefactory/_index.md b/english/aspose.cells/cellsdatatablefactory/_index.md index e15ecfab09..a4f09d33ae 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: 210 +weight: 220 url: /aspose.cells/cellsdatatablefactory/ is_root: false --- diff --git a/english/aspose.cells/cellsexception/_index.md b/english/aspose.cells/cellsexception/_index.md index 8b28e4d87e..8d0bd1f50b 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: 220 +weight: 230 url: /aspose.cells/cellsexception/ is_root: false --- diff --git a/english/aspose.cells/cellsfactory/_index.md b/english/aspose.cells/cellsfactory/_index.md index a9bf060133..54f39ec8ea 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: 230 +weight: 240 url: /aspose.cells/cellsfactory/ is_root: false --- diff --git a/english/aspose.cells/cellshelper/_index.md b/english/aspose.cells/cellshelper/_index.md index ccfbac4613..677639cc72 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: 240 +weight: 250 url: /aspose.cells/cellshelper/ is_root: false --- diff --git a/english/aspose.cells/cellsunittype/_index.md b/english/aspose.cells/cellsunittype/_index.md new file mode 100644 index 0000000000..af3ca897ba --- /dev/null +++ b/english/aspose.cells/cellsunittype/_index.md @@ -0,0 +1,31 @@ +--- +title: CellsUnitType enumeration +second_title: Aspose.Cells for Python via .NET API References +description: +type: docs +weight: 1970 +url: /aspose.cells/cellsunittype/ +is_root: false +--- + +## CellsUnitType enumeration + +Specifies the unit of measurement. + + + +The CellsUnitType type exposes the following members: + +### Fields +| Field | Description | +| :- | :- | +| PIXEL | Measurement is in pixels. | +| POINT | Measurement is in points. A point represents 1/72 of an inch. | +| INCH | Measurement is in inches. | +| CM | Measurement is in centimeters. | +| CHARACTER | In unit of characters. | + + + +### See Also +* module [`aspose.cells`](..) diff --git a/english/aspose.cells/cellvalue/_index.md b/english/aspose.cells/cellvalue/_index.md index 94d6c25cb5..ea63df7514 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: 160 +weight: 170 url: /aspose.cells/cellvalue/ is_root: false --- diff --git a/english/aspose.cells/cellvalueformatstrategy/_index.md b/english/aspose.cells/cellvalueformatstrategy/_index.md index 4239a8fe45..3abe629c1a 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: 1940 +weight: 1950 url: /aspose.cells/cellvalueformatstrategy/ is_root: false --- diff --git a/english/aspose.cells/cellvaluetype/_index.md b/english/aspose.cells/cellvaluetype/_index.md index eb8d1db9f6..fecddabfee 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: 1950 +weight: 1960 url: /aspose.cells/cellvaluetype/ is_root: false --- diff --git a/english/aspose.cells/cellwatch/_index.md b/english/aspose.cells/cellwatch/_index.md index e2621c902e..a6a773bee4 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: 170 +weight: 180 url: /aspose.cells/cellwatch/ is_root: false --- diff --git a/english/aspose.cells/cellwatchcollection/_index.md b/english/aspose.cells/cellwatchcollection/_index.md index e61edca092..3f1a5d1967 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: 180 +weight: 190 url: /aspose.cells/cellwatchcollection/ is_root: false --- diff --git a/english/aspose.cells/colorfilter/_index.md b/english/aspose.cells/colorfilter/_index.md index d1694e44b5..f22ceef422 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: 250 +weight: 260 url: /aspose.cells/colorfilter/ is_root: false --- diff --git a/english/aspose.cells/colorscale/_index.md b/english/aspose.cells/colorscale/_index.md index 6363c77d6f..9772d34efc 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: 260 +weight: 270 url: /aspose.cells/colorscale/ is_root: false --- diff --git a/english/aspose.cells/colortype/_index.md b/english/aspose.cells/colortype/_index.md index 6cffc3e8ee..c5a9bc2b7f 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: 1960 +weight: 1980 url: /aspose.cells/colortype/ is_root: false --- diff --git a/english/aspose.cells/column/_index.md b/english/aspose.cells/column/_index.md index d19e612baa..aaf4c05ae6 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: 270 +weight: 280 url: /aspose.cells/column/ is_root: false --- diff --git a/english/aspose.cells/columncollection/_index.md b/english/aspose.cells/columncollection/_index.md index f816133348..93f75a1890 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: 280 +weight: 290 url: /aspose.cells/columncollection/ is_root: false --- diff --git a/english/aspose.cells/comment/_index.md b/english/aspose.cells/comment/_index.md index 8530c1c745..c32add47df 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: 290 +weight: 300 url: /aspose.cells/comment/ is_root: false --- diff --git a/english/aspose.cells/commentcollection/_index.md b/english/aspose.cells/commentcollection/_index.md index 58fded7729..7695d2b8f7 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: 300 +weight: 310 url: /aspose.cells/commentcollection/ is_root: false --- diff --git a/english/aspose.cells/conditionalformattingcollection/_index.md b/english/aspose.cells/conditionalformattingcollection/_index.md index 6f079f18ab..6cedd56b09 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: 310 +weight: 320 url: /aspose.cells/conditionalformattingcollection/ is_root: false --- diff --git a/english/aspose.cells/conditionalformattingicon/_index.md b/english/aspose.cells/conditionalformattingicon/_index.md index 2bbbd3df8e..a860367d56 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: 320 +weight: 330 url: /aspose.cells/conditionalformattingicon/ is_root: false --- diff --git a/english/aspose.cells/conditionalformattingiconcollection/_index.md b/english/aspose.cells/conditionalformattingiconcollection/_index.md index 03616e374a..a8b3815544 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: 330 +weight: 340 url: /aspose.cells/conditionalformattingiconcollection/ is_root: false --- diff --git a/english/aspose.cells/conditionalformattingresult/_index.md b/english/aspose.cells/conditionalformattingresult/_index.md index c7f1b6d2f8..d48263a1fa 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: 340 +weight: 350 url: /aspose.cells/conditionalformattingresult/ is_root: false --- diff --git a/english/aspose.cells/conditionalformattingvalue/_index.md b/english/aspose.cells/conditionalformattingvalue/_index.md index f0ffa53508..fe57ff5427 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: 350 +weight: 360 url: /aspose.cells/conditionalformattingvalue/ is_root: false --- diff --git a/english/aspose.cells/conditionalformattingvaluecollection/_index.md b/english/aspose.cells/conditionalformattingvaluecollection/_index.md index 286cf3f772..8ede391d0b 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: 360 +weight: 370 url: /aspose.cells/conditionalformattingvaluecollection/ is_root: false --- diff --git a/english/aspose.cells/consolidationfunction/_index.md b/english/aspose.cells/consolidationfunction/_index.md index 62448cd0c4..111c42f39f 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: 1970 +weight: 1990 url: /aspose.cells/consolidationfunction/ is_root: false --- diff --git a/english/aspose.cells/copyformattype/_index.md b/english/aspose.cells/copyformattype/_index.md index 485ace4679..5a6b251bb5 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: 1980 +weight: 2000 url: /aspose.cells/copyformattype/ is_root: false --- diff --git a/english/aspose.cells/copyoptions/_index.md b/english/aspose.cells/copyoptions/_index.md index a8ab56ef2d..8e137cf531 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: 370 +weight: 380 url: /aspose.cells/copyoptions/ is_root: false --- diff --git a/english/aspose.cells/countrycode/_index.md b/english/aspose.cells/countrycode/_index.md index 51d7f57282..a048e685b4 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: 1990 +weight: 2010 url: /aspose.cells/countrycode/ is_root: false --- diff --git a/english/aspose.cells/customfilter/_index.md b/english/aspose.cells/customfilter/_index.md index 48689c4182..cf7f2353a4 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: 380 +weight: 390 url: /aspose.cells/customfilter/ is_root: false --- diff --git a/english/aspose.cells/customfiltercollection/_index.md b/english/aspose.cells/customfiltercollection/_index.md index 8e4a5f1349..949ee93eac 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: 390 +weight: 400 url: /aspose.cells/customfiltercollection/ is_root: false --- diff --git a/english/aspose.cells/customfunctiondefinition/_index.md b/english/aspose.cells/customfunctiondefinition/_index.md index d536f5e58b..38d39159db 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: 400 +weight: 410 url: /aspose.cells/customfunctiondefinition/ is_root: false --- diff --git a/english/aspose.cells/customimplementationfactory/_index.md b/english/aspose.cells/customimplementationfactory/_index.md index 6477b800bd..ddfcf13416 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: 410 +weight: 420 url: /aspose.cells/customimplementationfactory/ is_root: false --- diff --git a/english/aspose.cells/databar/_index.md b/english/aspose.cells/databar/_index.md index a405f312af..2be8eda183 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: 420 +weight: 430 url: /aspose.cells/databar/ is_root: false --- diff --git a/english/aspose.cells/databaraxisposition/_index.md b/english/aspose.cells/databaraxisposition/_index.md index 65d8a2abaa..5b77e66a31 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: 2000 +weight: 2020 url: /aspose.cells/databaraxisposition/ is_root: false --- diff --git a/english/aspose.cells/databarborder/_index.md b/english/aspose.cells/databarborder/_index.md index 1a95fa96e6..3f4065eb69 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: 430 +weight: 440 url: /aspose.cells/databarborder/ is_root: false --- diff --git a/english/aspose.cells/databarbordertype/_index.md b/english/aspose.cells/databarbordertype/_index.md index 98c4662259..8e72f76e81 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: 2010 +weight: 2030 url: /aspose.cells/databarbordertype/ is_root: false --- diff --git a/english/aspose.cells/databarfilltype/_index.md b/english/aspose.cells/databarfilltype/_index.md index e4f0eb333d..e77bd26de7 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: 2020 +weight: 2040 url: /aspose.cells/databarfilltype/ is_root: false --- diff --git a/english/aspose.cells/databarnegativecolortype/_index.md b/english/aspose.cells/databarnegativecolortype/_index.md index 5885c12ed9..9b54d28752 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: 2030 +weight: 2050 url: /aspose.cells/databarnegativecolortype/ is_root: false --- diff --git a/english/aspose.cells/datasorter/_index.md b/english/aspose.cells/datasorter/_index.md index 4b32f8ccde..4066e96996 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: 440 +weight: 450 url: /aspose.cells/datasorter/ is_root: false --- diff --git a/english/aspose.cells/datasorterkey/_index.md b/english/aspose.cells/datasorterkey/_index.md index 36b115a6c8..8ab0f637fb 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: 450 +weight: 460 url: /aspose.cells/datasorterkey/ is_root: false --- diff --git a/english/aspose.cells/datasorterkeycollection/_index.md b/english/aspose.cells/datasorterkeycollection/_index.md index 5c1fa39e9f..0847e1ebaa 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: 460 +weight: 470 url: /aspose.cells/datasorterkeycollection/ is_root: false --- diff --git a/english/aspose.cells/datetimegroupingtype/_index.md b/english/aspose.cells/datetimegroupingtype/_index.md index 6cb18df425..8bdc40af5e 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: 2040 +weight: 2060 url: /aspose.cells/datetimegroupingtype/ is_root: false --- diff --git a/english/aspose.cells/datetimegroupitem/_index.md b/english/aspose.cells/datetimegroupitem/_index.md index 70acc58725..e09383fd00 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: 470 +weight: 480 url: /aspose.cells/datetimegroupitem/ is_root: false --- diff --git a/english/aspose.cells/defaulteditlanguage/_index.md b/english/aspose.cells/defaulteditlanguage/_index.md index 9763f33287..5d7b158e27 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: 2050 +weight: 2070 url: /aspose.cells/defaulteditlanguage/ is_root: false --- diff --git a/english/aspose.cells/defaultstylesettings/_index.md b/english/aspose.cells/defaultstylesettings/_index.md index 14b7fae4e8..7af29fe7b5 100644 --- a/english/aspose.cells/defaultstylesettings/_index.md +++ b/english/aspose.cells/defaultstylesettings/_index.md @@ -1,30 +1,31 @@ ---- -title: DefaultStyleSettings class -second_title: Aspose.Cells for Python via .NET API References -description: -type: docs -weight: 480 -url: /aspose.cells/defaultstylesettings/ -is_root: false +--- +title: DefaultStyleSettings class +second_title: Aspose.Cells for Python via .NET API References +description: +type: docs +weight: 490 +url: /aspose.cells/defaultstylesettings/ +is_root: false --- - + ## DefaultStyleSettings class - + Settings for the default values of workbook's style properties. - + The DefaultStyleSettings type exposes the following members: - -### Properties -| Property | Description | -| :- | :- | -| [font_name](/cells/python-net/aspose.cells/defaultstylesettings/font_name) | Gets/Sets the default font name for the workbook | -| [font_size](/cells/python-net/aspose.cells/defaultstylesettings/font_size) | Gets/Sets the default standard font size for the workbook. | -| [horizontal_alignment](/cells/python-net/aspose.cells/defaultstylesettings/horizontal_alignment) | Gets/Sets the default value for horizontal alignment | -| [vertical_alignment](/cells/python-net/aspose.cells/defaultstylesettings/vertical_alignment) | Gets/Sets the default value for vertical alignment | - - - -### See Also -* module [`aspose.cells`](..) + +### Properties +| Property | Description | +| :- | :- | +| [built_in_preference](/cells/python-net/aspose.cells/defaultstylesettings/built_in_preference) | Indicates whether property for number format is preferrable when the style defines both built-in number and custom pattern.
Default value is false, that means by default custom pattern will be used to format values as long as it is not empty for one style. | +| [font_name](/cells/python-net/aspose.cells/defaultstylesettings/font_name) | Gets/Sets the default font name for the workbook | +| [font_size](/cells/python-net/aspose.cells/defaultstylesettings/font_size) | Gets/Sets the default standard font size for the workbook. | +| [horizontal_alignment](/cells/python-net/aspose.cells/defaultstylesettings/horizontal_alignment) | Gets/Sets the default value for horizontal alignment | +| [vertical_alignment](/cells/python-net/aspose.cells/defaultstylesettings/vertical_alignment) | Gets/Sets the default value for vertical alignment | + + + +### See Also +* module [`aspose.cells`](..) diff --git a/english/aspose.cells/defaultstylesettings/built_in_preference/_index.md b/english/aspose.cells/defaultstylesettings/built_in_preference/_index.md new file mode 100644 index 0000000000..7d3793aa2b --- /dev/null +++ b/english/aspose.cells/defaultstylesettings/built_in_preference/_index.md @@ -0,0 +1,34 @@ +--- +title: built_in_preference property +second_title: Aspose.Cells for Python via .NET API References +description: +type: docs +weight: 30 +url: /aspose.cells/defaultstylesettings/built_in_preference/ +is_root: false +--- + +## built_in_preference property + + +Indicates whether property for number format is preferrable when the style defines both built-in number and custom pattern. +Default value is false, that means by default custom pattern will be used to format values as long as it is not empty for one style. + +### Remarks + + +When loading workbook from existing template file, maybe both built-in number and custom pattern are defined for one style. +This property determine whether we should use the built-in number or the custom pattern when formatting values with the style. +### Definition: +```python +@property +def built_in_preference(self): + ... +@built_in_preference.setter +def built_in_preference(self, value): + ... +``` + +### See Also +* module [`aspose.cells`](../../) +* class [`DefaultStyleSettings`](/cells/python-net/aspose.cells/defaultstylesettings) diff --git a/english/aspose.cells/defaultstylesettings/font_name/_index.md b/english/aspose.cells/defaultstylesettings/font_name/_index.md index f1ddde7b15..690bfa0015 100644 --- a/english/aspose.cells/defaultstylesettings/font_name/_index.md +++ b/english/aspose.cells/defaultstylesettings/font_name/_index.md @@ -3,7 +3,7 @@ title: font_name property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 30 +weight: 40 url: /aspose.cells/defaultstylesettings/font_name/ is_root: false --- diff --git a/english/aspose.cells/defaultstylesettings/font_size/_index.md b/english/aspose.cells/defaultstylesettings/font_size/_index.md index be3914c28f..2f2f2b7acb 100644 --- a/english/aspose.cells/defaultstylesettings/font_size/_index.md +++ b/english/aspose.cells/defaultstylesettings/font_size/_index.md @@ -3,7 +3,7 @@ title: font_size property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 40 +weight: 50 url: /aspose.cells/defaultstylesettings/font_size/ is_root: false --- diff --git a/english/aspose.cells/defaultstylesettings/horizontal_alignment/_index.md b/english/aspose.cells/defaultstylesettings/horizontal_alignment/_index.md index 24566f8c09..aa4d935324 100644 --- a/english/aspose.cells/defaultstylesettings/horizontal_alignment/_index.md +++ b/english/aspose.cells/defaultstylesettings/horizontal_alignment/_index.md @@ -3,7 +3,7 @@ title: horizontal_alignment property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 50 +weight: 60 url: /aspose.cells/defaultstylesettings/horizontal_alignment/ is_root: false --- diff --git a/english/aspose.cells/defaultstylesettings/vertical_alignment/_index.md b/english/aspose.cells/defaultstylesettings/vertical_alignment/_index.md index 7268eac5a3..03c518feb3 100644 --- a/english/aspose.cells/defaultstylesettings/vertical_alignment/_index.md +++ b/english/aspose.cells/defaultstylesettings/vertical_alignment/_index.md @@ -3,7 +3,7 @@ title: vertical_alignment property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 60 +weight: 70 url: /aspose.cells/defaultstylesettings/vertical_alignment/ is_root: false --- diff --git a/english/aspose.cells/deleteblankoptions/_index.md b/english/aspose.cells/deleteblankoptions/_index.md index 4baae49920..011983d8b3 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: 490 +weight: 500 url: /aspose.cells/deleteblankoptions/ is_root: false --- diff --git a/english/aspose.cells/deleteoptions/_index.md b/english/aspose.cells/deleteoptions/_index.md index 750e97c522..8cb7697e74 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: 500 +weight: 510 url: /aspose.cells/deleteoptions/ is_root: false --- diff --git a/english/aspose.cells/difsaveoptions/_index.md b/english/aspose.cells/difsaveoptions/_index.md index 9db7308185..5fbda5d88e 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: 510 +weight: 520 url: /aspose.cells/difsaveoptions/ is_root: false --- diff --git a/english/aspose.cells/directorytype/_index.md b/english/aspose.cells/directorytype/_index.md index 44782504a5..990301b60c 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: 2060 +weight: 2080 url: /aspose.cells/directorytype/ is_root: false --- diff --git a/english/aspose.cells/displaydrawingobjects/_index.md b/english/aspose.cells/displaydrawingobjects/_index.md index 6e10d9333b..d5b91ac3c3 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: 2070 +weight: 2090 url: /aspose.cells/displaydrawingobjects/ is_root: false --- diff --git a/english/aspose.cells/docxsaveoptions/_index.md b/english/aspose.cells/docxsaveoptions/_index.md index 7f6ecad7c6..fff5b5e5b3 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: 520 +weight: 530 url: /aspose.cells/docxsaveoptions/ is_root: false --- diff --git a/english/aspose.cells/dxfcollection/_index.md b/english/aspose.cells/dxfcollection/_index.md index dd0b99026a..0919565c36 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: 530 +weight: 540 url: /aspose.cells/dxfcollection/ is_root: false --- diff --git a/english/aspose.cells/dynamicfilter/_index.md b/english/aspose.cells/dynamicfilter/_index.md index 9ae08e0865..ebae882595 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: 540 +weight: 550 url: /aspose.cells/dynamicfilter/ is_root: false --- diff --git a/english/aspose.cells/dynamicfiltertype/_index.md b/english/aspose.cells/dynamicfiltertype/_index.md index 29983b47cb..ce381c72fb 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: 2080 +weight: 2100 url: /aspose.cells/dynamicfiltertype/ is_root: false --- diff --git a/english/aspose.cells/ebookloadoptions/_index.md b/english/aspose.cells/ebookloadoptions/_index.md index 77bff546f9..b88c0807f0 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: 550 +weight: 560 url: /aspose.cells/ebookloadoptions/ is_root: false --- diff --git a/english/aspose.cells/emfrendersetting/_index.md b/english/aspose.cells/emfrendersetting/_index.md index ede1a8c3c6..cbbb0f4286 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: 2090 +weight: 2110 url: /aspose.cells/emfrendersetting/ is_root: false --- diff --git a/english/aspose.cells/encryptiontype/_index.md b/english/aspose.cells/encryptiontype/_index.md index 4fbf17b368..0aeb3a320b 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: 2100 +weight: 2120 url: /aspose.cells/encryptiontype/ is_root: false --- diff --git a/english/aspose.cells/errorcheckoption/_index.md b/english/aspose.cells/errorcheckoption/_index.md index e98d678776..c6bde41797 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: 560 +weight: 570 url: /aspose.cells/errorcheckoption/ is_root: false --- diff --git a/english/aspose.cells/errorcheckoptioncollection/_index.md b/english/aspose.cells/errorcheckoptioncollection/_index.md index d29f103834..d266691553 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: 570 +weight: 580 url: /aspose.cells/errorcheckoptioncollection/ is_root: false --- diff --git a/english/aspose.cells/errorchecktype/_index.md b/english/aspose.cells/errorchecktype/_index.md index d24a386711..c46b3848d2 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: 2110 +weight: 2130 url: /aspose.cells/errorchecktype/ is_root: false --- diff --git a/english/aspose.cells/exceptiontype/_index.md b/english/aspose.cells/exceptiontype/_index.md index c9541a62ef..a203dd04bf 100644 --- a/english/aspose.cells/exceptiontype/_index.md +++ b/english/aspose.cells/exceptiontype/_index.md @@ -3,7 +3,7 @@ title: ExceptionType enumeration second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 2120 +weight: 2140 url: /aspose.cells/exceptiontype/ is_root: false --- diff --git a/english/aspose.cells/exportobjectevent/_index.md b/english/aspose.cells/exportobjectevent/_index.md index 4438315269..def69c5882 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: 580 +weight: 590 url: /aspose.cells/exportobjectevent/ is_root: false --- diff --git a/english/aspose.cells/exporttableoptions/_index.md b/english/aspose.cells/exporttableoptions/_index.md index ebf87e35bf..4acd8d9ccf 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: 590 +weight: 600 url: /aspose.cells/exporttableoptions/ is_root: false --- diff --git a/english/aspose.cells/externallink/_index.md b/english/aspose.cells/externallink/_index.md index 68e08b8904..c5590cd110 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: 600 +weight: 610 url: /aspose.cells/externallink/ is_root: false --- diff --git a/english/aspose.cells/externallinkcollection/_index.md b/english/aspose.cells/externallinkcollection/_index.md index 0cd6168d98..1b816d9f04 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: 610 +weight: 620 url: /aspose.cells/externallinkcollection/ is_root: false --- diff --git a/english/aspose.cells/externallinktype/_index.md b/english/aspose.cells/externallinktype/_index.md index 53c6aa6831..4e8e547d7c 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: 2130 +weight: 2150 url: /aspose.cells/externallinktype/ is_root: false --- diff --git a/english/aspose.cells/filefontsource/_index.md b/english/aspose.cells/filefontsource/_index.md index 543f968e0a..bc190b5695 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: 620 +weight: 630 url: /aspose.cells/filefontsource/ is_root: false --- diff --git a/english/aspose.cells/fileformatinfo/_index.md b/english/aspose.cells/fileformatinfo/_index.md index 7c1c37cd18..f657628cdd 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: 630 +weight: 640 url: /aspose.cells/fileformatinfo/ is_root: false --- diff --git a/english/aspose.cells/fileformattype/_index.md b/english/aspose.cells/fileformattype/_index.md index 700a4163ed..f5e1aadf9a 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: 2140 +weight: 2160 url: /aspose.cells/fileformattype/ is_root: false --- diff --git a/english/aspose.cells/fileformatutil/_index.md b/english/aspose.cells/fileformatutil/_index.md index 76b6967023..0a5e0df490 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: 640 +weight: 650 url: /aspose.cells/fileformatutil/ is_root: false --- diff --git a/english/aspose.cells/filtercolumn/_index.md b/english/aspose.cells/filtercolumn/_index.md index 9772d18f77..3a5154ca6a 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: 650 +weight: 660 url: /aspose.cells/filtercolumn/ is_root: false --- diff --git a/english/aspose.cells/filtercolumncollection/_index.md b/english/aspose.cells/filtercolumncollection/_index.md index 3b6e690adf..6966d059ad 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: 660 +weight: 670 url: /aspose.cells/filtercolumncollection/ is_root: false --- diff --git a/english/aspose.cells/filteroperatortype/_index.md b/english/aspose.cells/filteroperatortype/_index.md index 7e951cffea..460240a402 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: 2150 +weight: 2170 url: /aspose.cells/filteroperatortype/ is_root: false --- diff --git a/english/aspose.cells/filtertype/_index.md b/english/aspose.cells/filtertype/_index.md index 64c92e7a35..9bec6b84a2 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: 2160 +weight: 2180 url: /aspose.cells/filtertype/ is_root: false --- diff --git a/english/aspose.cells/findoptions/_index.md b/english/aspose.cells/findoptions/_index.md index c79cf764da..42efa0e6d1 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: 670 +weight: 680 url: /aspose.cells/findoptions/ is_root: false --- diff --git a/english/aspose.cells/folderfontsource/_index.md b/english/aspose.cells/folderfontsource/_index.md index 56ecb263de..469de363dd 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: 680 +weight: 690 url: /aspose.cells/folderfontsource/ is_root: false --- diff --git a/english/aspose.cells/font/_index.md b/english/aspose.cells/font/_index.md index 093dab7f58..6d364c6550 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: 690 +weight: 700 url: /aspose.cells/font/ is_root: false --- diff --git a/english/aspose.cells/fontconfigs/_index.md b/english/aspose.cells/fontconfigs/_index.md index 456c34ceb0..a650cde547 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: 700 +weight: 710 url: /aspose.cells/fontconfigs/ is_root: false --- diff --git a/english/aspose.cells/fontschemetype/_index.md b/english/aspose.cells/fontschemetype/_index.md index 1271e3e655..0820950faa 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: 2170 +weight: 2190 url: /aspose.cells/fontschemetype/ is_root: false --- diff --git a/english/aspose.cells/fontsetting/_index.md b/english/aspose.cells/fontsetting/_index.md index c4665251ae..3aad8d0798 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: 710 +weight: 720 url: /aspose.cells/fontsetting/ is_root: false --- diff --git a/english/aspose.cells/fontsourcebase/_index.md b/english/aspose.cells/fontsourcebase/_index.md index 754e79322a..4f349905fb 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: 720 +weight: 730 url: /aspose.cells/fontsourcebase/ is_root: false --- diff --git a/english/aspose.cells/fontsourcetype/_index.md b/english/aspose.cells/fontsourcetype/_index.md index 1c81ac8531..7dff768677 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: 2180 +weight: 2200 url: /aspose.cells/fontsourcetype/ is_root: false --- diff --git a/english/aspose.cells/fontunderlinetype/_index.md b/english/aspose.cells/fontunderlinetype/_index.md index d1699f161f..7fadf036a9 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: 2190 +weight: 2210 url: /aspose.cells/fontunderlinetype/ is_root: false --- diff --git a/english/aspose.cells/formatcondition/_index.md b/english/aspose.cells/formatcondition/_index.md index 4d0b4101c8..caad296f1e 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: 730 +weight: 740 url: /aspose.cells/formatcondition/ is_root: false --- diff --git a/english/aspose.cells/formatconditioncollection/_index.md b/english/aspose.cells/formatconditioncollection/_index.md index 8cc0fee531..a93a49191d 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: 740 +weight: 750 url: /aspose.cells/formatconditioncollection/ is_root: false --- diff --git a/english/aspose.cells/formatconditiontype/_index.md b/english/aspose.cells/formatconditiontype/_index.md index 81d2ceca82..228d51dcc2 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: 2200 +weight: 2220 url: /aspose.cells/formatconditiontype/ is_root: false --- diff --git a/english/aspose.cells/formatconditionvaluetype/_index.md b/english/aspose.cells/formatconditionvaluetype/_index.md index e3bfb41d24..887b39e120 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: 2210 +weight: 2230 url: /aspose.cells/formatconditionvaluetype/ is_root: false --- diff --git a/english/aspose.cells/formulaparseoptions/_index.md b/english/aspose.cells/formulaparseoptions/_index.md index 14da60f7e9..0e957ee2ff 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: 750 +weight: 760 url: /aspose.cells/formulaparseoptions/ is_root: false --- diff --git a/english/aspose.cells/formulasettings/_index.md b/english/aspose.cells/formulasettings/_index.md index 2c5f99fa19..a8b5969add 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: 760 +weight: 770 url: /aspose.cells/formulasettings/ is_root: false --- diff --git a/english/aspose.cells/globalizationsettings/_index.md b/english/aspose.cells/globalizationsettings/_index.md index 491806be8a..5819d95c6c 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: 770 +weight: 780 url: /aspose.cells/globalizationsettings/ is_root: false --- diff --git a/english/aspose.cells/gridlinetype/_index.md b/english/aspose.cells/gridlinetype/_index.md index 3c0135b8ea..a778300ead 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: 2220 +weight: 2240 url: /aspose.cells/gridlinetype/ is_root: false --- diff --git a/english/aspose.cells/headerfootercommand/_index.md b/english/aspose.cells/headerfootercommand/_index.md index 5a6e673009..0ef9038708 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: 780 +weight: 790 url: /aspose.cells/headerfootercommand/ is_root: false --- diff --git a/english/aspose.cells/headerfootercommandtype/_index.md b/english/aspose.cells/headerfootercommandtype/_index.md index 073aed31af..3eec067893 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: 2230 +weight: 2250 url: /aspose.cells/headerfootercommandtype/ is_root: false --- diff --git a/english/aspose.cells/horizontalpagebreak/_index.md b/english/aspose.cells/horizontalpagebreak/_index.md index 081fbfeac8..2249e08bac 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: 790 +weight: 800 url: /aspose.cells/horizontalpagebreak/ is_root: false --- diff --git a/english/aspose.cells/horizontalpagebreakcollection/_index.md b/english/aspose.cells/horizontalpagebreakcollection/_index.md index d17a2762ab..5916a6481e 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: 800 +weight: 810 url: /aspose.cells/horizontalpagebreakcollection/ is_root: false --- diff --git a/english/aspose.cells/htmlcrosstype/_index.md b/english/aspose.cells/htmlcrosstype/_index.md index 3beb0c7b71..c6ca5e9cfa 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: 2240 +weight: 2260 url: /aspose.cells/htmlcrosstype/ is_root: false --- diff --git a/english/aspose.cells/htmlexportdataoptions/_index.md b/english/aspose.cells/htmlexportdataoptions/_index.md index be4e3cbc04..1fbc95e2f3 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: 2250 +weight: 2270 url: /aspose.cells/htmlexportdataoptions/ is_root: false --- diff --git a/english/aspose.cells/htmlhiddencoldisplaytype/_index.md b/english/aspose.cells/htmlhiddencoldisplaytype/_index.md index 7eb943b65f..d3d6b32710 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: 2260 +weight: 2280 url: /aspose.cells/htmlhiddencoldisplaytype/ is_root: false --- diff --git a/english/aspose.cells/htmlhiddenrowdisplaytype/_index.md b/english/aspose.cells/htmlhiddenrowdisplaytype/_index.md index 504fa783a2..88e406009f 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: 2270 +weight: 2290 url: /aspose.cells/htmlhiddenrowdisplaytype/ is_root: false --- diff --git a/english/aspose.cells/htmllinktargettype/_index.md b/english/aspose.cells/htmllinktargettype/_index.md index 06ea6f7cb9..711652ac7d 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: 2280 +weight: 2300 url: /aspose.cells/htmllinktargettype/ is_root: false --- diff --git a/english/aspose.cells/htmlloadoptions/_index.md b/english/aspose.cells/htmlloadoptions/_index.md index 2a91f846d3..69997a8acd 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: 810 +weight: 820 url: /aspose.cells/htmlloadoptions/ is_root: false --- diff --git a/english/aspose.cells/htmlsaveoptions/_index.md b/english/aspose.cells/htmlsaveoptions/_index.md index 930471ee3b..ea85c5888d 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: 820 +weight: 830 url: /aspose.cells/htmlsaveoptions/ is_root: false --- @@ -47,6 +47,7 @@ The HtmlSaveOptions type exposes the following members: | [attached_files_directory](/cells/python-net/aspose.cells/htmlsaveoptions/attached_files_directory) | The directory that the attached files will be saved to.
Only for saving to html stream. | | [attached_files_url_prefix](/cells/python-net/aspose.cells/htmlsaveoptions/attached_files_url_prefix) | Specify the Url prefix of attached files such as image in the html file.
Only for saving to html stream. | | [default_font_name](/cells/python-net/aspose.cells/htmlsaveoptions/default_font_name) | Specify the default font name for exporting html, the default font will be used when the font of style is not existing,
If this property is null, Aspose.Cells will use universal font which have the same family with the original font,
the default value is null. | +| [add_generic_font](/cells/python-net/aspose.cells/htmlsaveoptions/add_generic_font) | Indicates whether to add a generic font to CSS font-family.
The default value is true | | [worksheet_scalable](/cells/python-net/aspose.cells/htmlsaveoptions/worksheet_scalable) | Indicates if zooming in or out the html via worksheet zoom level when saving file to html, the default value is false. | | [is_export_comments](/cells/python-net/aspose.cells/htmlsaveoptions/is_export_comments) | Indicates if exporting comments when saving file to html, the default value is false. | | [export_comments_type](/cells/python-net/aspose.cells/htmlsaveoptions/export_comments_type) | Represents type of exporting comments to html files. | @@ -103,6 +104,7 @@ The HtmlSaveOptions type exposes the following members: | [is_mobile_compatible](/cells/python-net/aspose.cells/htmlsaveoptions/is_mobile_compatible) | Indicates whether the output HTML is compatible with mobile devices.
The default value is false. | | [css_styles](/cells/python-net/aspose.cells/htmlsaveoptions/css_styles) | Gets or sets the additional css styles for the formatter.
Only works when [`HtmlSaveOptions.save_as_single_file`](/cells/python-net/aspose.cells/htmlsaveoptions#save_as_single_file) is True.

CssStyles="body { padding: 5px }"; | | [hide_overflow_wrapped_text](/cells/python-net/aspose.cells/htmlsaveoptions/hide_overflow_wrapped_text) | Indicates whether to hide overflow text when the cell format is set to wrap text.
The default value is false | +| [is_border_collapsed](/cells/python-net/aspose.cells/htmlsaveoptions/is_border_collapsed) | Indicates whether the table borders are collapsed.
The default value is true. | diff --git a/english/aspose.cells/htmlsaveoptions/add_generic_font/_index.md b/english/aspose.cells/htmlsaveoptions/add_generic_font/_index.md new file mode 100644 index 0000000000..df2c690393 --- /dev/null +++ b/english/aspose.cells/htmlsaveoptions/add_generic_font/_index.md @@ -0,0 +1,28 @@ +--- +title: add_generic_font property +second_title: Aspose.Cells for Python via .NET API References +description: +type: docs +weight: 30 +url: /aspose.cells/htmlsaveoptions/add_generic_font/ +is_root: false +--- + +## add_generic_font property + + +Indicates whether to add a generic font to CSS font-family. +The default value is true +### Definition: +```python +@property +def add_generic_font(self): + ... +@add_generic_font.setter +def add_generic_font(self, value): + ... +``` + +### See Also +* module [`aspose.cells`](../../) +* class [`HtmlSaveOptions`](/cells/python-net/aspose.cells/htmlsaveoptions) diff --git a/english/aspose.cells/htmlsaveoptions/add_tooltip_text/_index.md b/english/aspose.cells/htmlsaveoptions/add_tooltip_text/_index.md index 00e71fa826..29ab30f7c2 100644 --- a/english/aspose.cells/htmlsaveoptions/add_tooltip_text/_index.md +++ b/english/aspose.cells/htmlsaveoptions/add_tooltip_text/_index.md @@ -3,7 +3,7 @@ title: add_tooltip_text property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 30 +weight: 40 url: /aspose.cells/htmlsaveoptions/add_tooltip_text/ is_root: false --- diff --git a/english/aspose.cells/htmlsaveoptions/attached_files_directory/_index.md b/english/aspose.cells/htmlsaveoptions/attached_files_directory/_index.md index 2af5d45b1b..812d9dccab 100644 --- a/english/aspose.cells/htmlsaveoptions/attached_files_directory/_index.md +++ b/english/aspose.cells/htmlsaveoptions/attached_files_directory/_index.md @@ -3,7 +3,7 @@ title: attached_files_directory property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 40 +weight: 50 url: /aspose.cells/htmlsaveoptions/attached_files_directory/ is_root: false --- diff --git a/english/aspose.cells/htmlsaveoptions/attached_files_url_prefix/_index.md b/english/aspose.cells/htmlsaveoptions/attached_files_url_prefix/_index.md index 5394cc8787..cc6075e862 100644 --- a/english/aspose.cells/htmlsaveoptions/attached_files_url_prefix/_index.md +++ b/english/aspose.cells/htmlsaveoptions/attached_files_url_prefix/_index.md @@ -3,7 +3,7 @@ title: attached_files_url_prefix property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 50 +weight: 60 url: /aspose.cells/htmlsaveoptions/attached_files_url_prefix/ is_root: false --- diff --git a/english/aspose.cells/htmlsaveoptions/cached_file_folder/_index.md b/english/aspose.cells/htmlsaveoptions/cached_file_folder/_index.md index ceff7a242d..94ccb7a632 100644 --- a/english/aspose.cells/htmlsaveoptions/cached_file_folder/_index.md +++ b/english/aspose.cells/htmlsaveoptions/cached_file_folder/_index.md @@ -3,7 +3,7 @@ title: cached_file_folder property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 60 +weight: 70 url: /aspose.cells/htmlsaveoptions/cached_file_folder/ is_root: false --- diff --git a/english/aspose.cells/htmlsaveoptions/calculate_formula/_index.md b/english/aspose.cells/htmlsaveoptions/calculate_formula/_index.md index 33cb9630de..e2389d9b17 100644 --- a/english/aspose.cells/htmlsaveoptions/calculate_formula/_index.md +++ b/english/aspose.cells/htmlsaveoptions/calculate_formula/_index.md @@ -3,7 +3,7 @@ title: calculate_formula property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 70 +weight: 80 url: /aspose.cells/htmlsaveoptions/calculate_formula/ is_root: false --- diff --git a/english/aspose.cells/htmlsaveoptions/cell_css_prefix/_index.md b/english/aspose.cells/htmlsaveoptions/cell_css_prefix/_index.md index 3b2c11b7b9..ff91564050 100644 --- a/english/aspose.cells/htmlsaveoptions/cell_css_prefix/_index.md +++ b/english/aspose.cells/htmlsaveoptions/cell_css_prefix/_index.md @@ -3,7 +3,7 @@ title: cell_css_prefix property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 80 +weight: 90 url: /aspose.cells/htmlsaveoptions/cell_css_prefix/ is_root: false --- diff --git a/english/aspose.cells/htmlsaveoptions/clear_data/_index.md b/english/aspose.cells/htmlsaveoptions/clear_data/_index.md index a0da6f943a..7c33e3d3c1 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: 90 +weight: 100 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 e11d0ef95c..ce18ec58c9 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: 100 +weight: 110 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 6d6e339537..7f55cd8151 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: 110 +weight: 120 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 b8e414a89d..a3232f00d0 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: 120 +weight: 130 url: /aspose.cells/htmlsaveoptions/default_font_name/ is_root: false --- 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 87beb64ae2..4ab6575146 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: 130 +weight: 140 url: /aspose.cells/htmlsaveoptions/disable_downlevel_revealed_comments/ is_root: false --- diff --git a/english/aspose.cells/htmlsaveoptions/encoding/_index.md b/english/aspose.cells/htmlsaveoptions/encoding/_index.md index f70d515593..a58963f3cb 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: 140 +weight: 150 url: /aspose.cells/htmlsaveoptions/encoding/ 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 4d29a67ed5..5aa201bbec 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: 150 +weight: 160 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 a772f27479..db2a5dd6c2 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: 160 +weight: 170 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 3d63c797e5..ae3eee7b0e 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: 170 +weight: 180 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 7164187c1e..bd102f7ad2 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: 180 +weight: 190 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 02aafe7725..96c0e82e5b 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: 190 +weight: 200 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 8dc1ed46f3..c96f4846a0 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: 200 +weight: 210 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 78153139be..4eab0dbf71 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: 210 +weight: 220 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 f3dac90435..9326294182 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: 220 +weight: 230 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 278651ff46..9232df26bc 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: 230 +weight: 240 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 81cf3a9e28..8d82148753 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: 240 +weight: 250 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 5bd864f153..0d72baa1f0 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: 250 +weight: 260 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 36e78b6692..d192beeef9 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: 260 +weight: 270 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 bfe430c8f9..79619bb81a 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: 270 +weight: 280 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 b78c1c7e4d..af1eae0c38 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: 280 +weight: 290 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 87789d4e0a..f66cdf226d 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: 290 +weight: 300 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 27c9feb796..f9887d1666 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: 300 +weight: 310 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 023bd03153..a01ee59489 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: 310 +weight: 320 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 63abd809d5..e27b64637f 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: 320 +weight: 330 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 c274e3695a..9c758f08f7 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: 330 +weight: 340 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 9def4c2d4c..0652704fd7 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: 340 +weight: 350 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 ec2e58f32d..48d2470f35 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: 350 +weight: 360 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 df96bcb98a..40a50ac150 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: 360 +weight: 370 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 0c68f743ff..2db7777bcb 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: 370 +weight: 380 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 1351dc97c9..c7d621fd1b 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: 380 +weight: 390 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 0d4a300b3d..9396781ad5 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: 390 +weight: 400 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 c23d70642d..128d519555 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: 400 +weight: 410 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 3d19a582cf..cdfebee54e 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: 410 +weight: 420 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 5befeda385..71ce837a36 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: 420 +weight: 430 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 cf799fc749..bbc1458d19 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: 430 +weight: 440 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 1ad81af649..0f555c4857 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: 440 +weight: 450 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 2c44dab7f3..a8bab3bfd6 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: 450 +weight: 460 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 5169098a0e..dac0413213 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: 460 +weight: 470 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 854086c3c9..3752c9252f 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: 470 +weight: 480 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 e2490294cb..7eeccec3d2 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: 480 +weight: 490 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 new file mode 100644 index 0000000000..b2d4360ab9 --- /dev/null +++ b/english/aspose.cells/htmlsaveoptions/is_border_collapsed/_index.md @@ -0,0 +1,28 @@ +--- +title: is_border_collapsed property +second_title: Aspose.Cells for Python via .NET API References +description: +type: docs +weight: 500 +url: /aspose.cells/htmlsaveoptions/is_border_collapsed/ +is_root: false +--- + +## is_border_collapsed property + + +Indicates whether the table borders are collapsed. +The default value is true. +### Definition: +```python +@property +def is_border_collapsed(self): + ... +@is_border_collapsed.setter +def is_border_collapsed(self, value): + ... +``` + +### See Also +* module [`aspose.cells`](../../) +* class [`HtmlSaveOptions`](/cells/python-net/aspose.cells/htmlsaveoptions) 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 2c2ab63ff5..267744c681 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: 490 +weight: 510 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 4a7b198b16..721d2da095 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: 500 +weight: 520 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 0f81d097ad..c77cb49e8a 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: 510 +weight: 530 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 ec4008afea..917338efa0 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: 520 +weight: 540 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 5c0cdc1a92..59c93153ae 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: 530 +weight: 550 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 7192a7d140..53a5211b21 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: 540 +weight: 560 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 43ad146df1..e240c60f2b 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: 550 +weight: 570 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 050af2c4ae..fdc0ed48ed 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: 560 +weight: 580 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 cf6bf26857..95651d8eee 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: 570 +weight: 590 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 ab01794ad7..e205b1220d 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: 580 +weight: 600 url: /aspose.cells/htmlsaveoptions/merge_empty_td_type/ is_root: false --- diff --git a/english/aspose.cells/htmlsaveoptions/page_title/_index.md b/english/aspose.cells/htmlsaveoptions/page_title/_index.md index 0bd7a14402..68d26e8a41 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: 590 +weight: 610 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 94455a27b6..9f612de2d8 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: 600 +weight: 620 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 3327b9a487..78ce1d813d 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: 610 +weight: 630 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 7960623db0..8ac198759f 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: 620 +weight: 640 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 0e4b6009a0..dd64f24989 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: 630 +weight: 650 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 c3ec112110..2fd10c731b 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: 640 +weight: 660 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 26d2779168..3f7484551f 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: 650 +weight: 670 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 91aa6ea133..8512dd073e 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: 660 +weight: 680 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 d4b3b68772..9cae49c90b 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: 670 +weight: 690 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 85c1700746..ed0f234b41 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: 680 +weight: 700 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 45d40ae1f6..9c3ae04019 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: 690 +weight: 710 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 46d02b840f..66dbb9b893 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: 700 +weight: 720 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 cbb1b7b7b7..ddf6dd8171 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: 710 +weight: 730 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 3bb09c85a4..e56380b57b 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: 720 +weight: 740 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 36e0d688ae..e8756788b0 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: 730 +weight: 750 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 1e196f4a19..e7d9141ea4 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: 740 +weight: 760 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 a4db370c31..36c229d9a1 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: 830 +weight: 840 url: /aspose.cells/htmltableloadoption/ is_root: false --- diff --git a/english/aspose.cells/htmltableloadoptioncollection/_index.md b/english/aspose.cells/htmltableloadoptioncollection/_index.md index df1ad0e5fe..0b2008b313 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: 840 +weight: 850 url: /aspose.cells/htmltableloadoptioncollection/ is_root: false --- diff --git a/english/aspose.cells/hyperlink/_index.md b/english/aspose.cells/hyperlink/_index.md index ab5e554d71..9ad3e64949 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: 850 +weight: 860 url: /aspose.cells/hyperlink/ is_root: false --- diff --git a/english/aspose.cells/hyperlinkcollection/_index.md b/english/aspose.cells/hyperlinkcollection/_index.md index 166f8eaaf1..b3aea891ae 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: 860 +weight: 870 url: /aspose.cells/hyperlinkcollection/ is_root: false --- diff --git a/english/aspose.cells/hyperlinktype/_index.md b/english/aspose.cells/hyperlinktype/_index.md index 27ef29d11b..b85e5b929b 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: 2290 +weight: 2310 url: /aspose.cells/hyperlinktype/ is_root: false --- diff --git a/english/aspose.cells/icellsdatatable/_index.md b/english/aspose.cells/icellsdatatable/_index.md index 27dc9dec03..88657b8add 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: 870 +weight: 880 url: /aspose.cells/icellsdatatable/ is_root: false --- diff --git a/english/aspose.cells/iconfilter/_index.md b/english/aspose.cells/iconfilter/_index.md index 718c8f2c03..b30e902103 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: 940 +weight: 950 url: /aspose.cells/iconfilter/ is_root: false --- diff --git a/english/aspose.cells/iconset/_index.md b/english/aspose.cells/iconset/_index.md index f8b2d3d73f..58b4bb8de8 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: 950 +weight: 960 url: /aspose.cells/iconset/ is_root: false --- diff --git a/english/aspose.cells/iconsettype/_index.md b/english/aspose.cells/iconsettype/_index.md index 05168e1fab..2e65a26f46 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: 2300 +weight: 2320 url: /aspose.cells/iconsettype/ is_root: false --- diff --git a/english/aspose.cells/icustomparser/_index.md b/english/aspose.cells/icustomparser/_index.md index 194a2f60c4..f159ea5404 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: 880 +weight: 890 url: /aspose.cells/icustomparser/ is_root: false --- diff --git a/english/aspose.cells/iexportobjectlistener/_index.md b/english/aspose.cells/iexportobjectlistener/_index.md index 0e54d0eba1..8d5d74f3d2 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: 890 +weight: 900 url: /aspose.cells/iexportobjectlistener/ is_root: false --- diff --git a/english/aspose.cells/ifilepathprovider/_index.md b/english/aspose.cells/ifilepathprovider/_index.md index dac7feae3c..839ff0bdc5 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: 900 +weight: 910 url: /aspose.cells/ifilepathprovider/ is_root: false --- diff --git a/english/aspose.cells/imagesaveoptions/_index.md b/english/aspose.cells/imagesaveoptions/_index.md index d930384459..ea3e3239aa 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: 960 +weight: 970 url: /aspose.cells/imagesaveoptions/ is_root: false --- diff --git a/english/aspose.cells/importtableoptions/_index.md b/english/aspose.cells/importtableoptions/_index.md index 4ff66818fd..a7f7690bab 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: 970 +weight: 980 url: /aspose.cells/importtableoptions/ is_root: false --- diff --git a/english/aspose.cells/individualfontconfigs/_index.md b/english/aspose.cells/individualfontconfigs/_index.md index a1062901fb..d47d22d1f9 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: 980 +weight: 990 url: /aspose.cells/individualfontconfigs/ is_root: false --- diff --git a/english/aspose.cells/insertoptions/_index.md b/english/aspose.cells/insertoptions/_index.md index cfc110f0f7..5888d2b97a 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: 990 +weight: 1000 url: /aspose.cells/insertoptions/ is_root: false --- diff --git a/english/aspose.cells/interruptmonitor/_index.md b/english/aspose.cells/interruptmonitor/_index.md index 8cd76e7e14..90b22b2199 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: 1000 +weight: 1010 url: /aspose.cells/interruptmonitor/ is_root: false --- diff --git a/english/aspose.cells/ismartmarkercallback/_index.md b/english/aspose.cells/ismartmarkercallback/_index.md index 6a5d9d56f4..467807a93b 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: 910 +weight: 920 url: /aspose.cells/ismartmarkercallback/ is_root: false --- diff --git a/english/aspose.cells/istreamprovider/_index.md b/english/aspose.cells/istreamprovider/_index.md index b31efb1af3..b973b809c8 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: 920 +weight: 930 url: /aspose.cells/istreamprovider/ is_root: false --- diff --git a/english/aspose.cells/iwarningcallback/_index.md b/english/aspose.cells/iwarningcallback/_index.md index 374bb47d22..aebb702df2 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: 930 +weight: 940 url: /aspose.cells/iwarningcallback/ is_root: false --- diff --git a/english/aspose.cells/jsonloadoptions/_index.md b/english/aspose.cells/jsonloadoptions/_index.md index 8d4de533c7..c53d9b49e9 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: 1010 +weight: 1020 url: /aspose.cells/jsonloadoptions/ is_root: false --- diff --git a/english/aspose.cells/jsonsaveoptions/_index.md b/english/aspose.cells/jsonsaveoptions/_index.md index 102d03e7e7..0d594441b8 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: 1020 +weight: 1030 url: /aspose.cells/jsonsaveoptions/ is_root: false --- diff --git a/english/aspose.cells/license/_index.md b/english/aspose.cells/license/_index.md index c96f6ae376..ab60c238a8 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: 1030 +weight: 1040 url: /aspose.cells/license/ is_root: false --- diff --git a/english/aspose.cells/lightcellsdatahandler/_index.md b/english/aspose.cells/lightcellsdatahandler/_index.md index 997ebb577d..00be5d662c 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: 1040 +weight: 1050 url: /aspose.cells/lightcellsdatahandler/ is_root: false --- diff --git a/english/aspose.cells/lightcellsdataprovider/_index.md b/english/aspose.cells/lightcellsdataprovider/_index.md index 8f15f32fd9..68fdd2f6e9 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: 1050 +weight: 1060 url: /aspose.cells/lightcellsdataprovider/ is_root: false --- diff --git a/english/aspose.cells/loaddatafilteroptions/_index.md b/english/aspose.cells/loaddatafilteroptions/_index.md index 8578d0bd85..af7f085eac 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: 2310 +weight: 2330 url: /aspose.cells/loaddatafilteroptions/ is_root: false --- diff --git a/english/aspose.cells/loadfilter/_index.md b/english/aspose.cells/loadfilter/_index.md index b33a9b7663..311c0871e9 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: 1060 +weight: 1070 url: /aspose.cells/loadfilter/ is_root: false --- diff --git a/english/aspose.cells/loadformat/_index.md b/english/aspose.cells/loadformat/_index.md index b235f8d274..16c630e5ba 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: 2320 +weight: 2340 url: /aspose.cells/loadformat/ is_root: false --- diff --git a/english/aspose.cells/loadoptions/_index.md b/english/aspose.cells/loadoptions/_index.md index 8d2f695ca3..1eac2fe9d8 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: 1070 +weight: 1080 url: /aspose.cells/loadoptions/ is_root: false --- diff --git a/english/aspose.cells/lookattype/_index.md b/english/aspose.cells/lookattype/_index.md index f25ad0e8d7..975464b0f3 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: 2330 +weight: 2350 url: /aspose.cells/lookattype/ is_root: false --- diff --git a/english/aspose.cells/lookintype/_index.md b/english/aspose.cells/lookintype/_index.md index 34bc9e3b99..42af1aaf30 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: 2340 +weight: 2360 url: /aspose.cells/lookintype/ is_root: false --- diff --git a/english/aspose.cells/markdownsaveoptions/_index.md b/english/aspose.cells/markdownsaveoptions/_index.md index ac1db370fe..560c158249 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: 1080 +weight: 1090 url: /aspose.cells/markdownsaveoptions/ is_root: false --- diff --git a/english/aspose.cells/memoryfontsource/_index.md b/english/aspose.cells/memoryfontsource/_index.md index deffff60e7..31f9d91fe5 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: 1090 +weight: 1100 url: /aspose.cells/memoryfontsource/ is_root: false --- diff --git a/english/aspose.cells/memorysetting/_index.md b/english/aspose.cells/memorysetting/_index.md index db4405271a..d4b07c3d26 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: 2350 +weight: 2370 url: /aspose.cells/memorysetting/ is_root: false --- diff --git a/english/aspose.cells/mergeemptytdtype/_index.md b/english/aspose.cells/mergeemptytdtype/_index.md index ec9067f5da..6be61ca65b 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: 2360 +weight: 2380 url: /aspose.cells/mergeemptytdtype/ is_root: false --- diff --git a/english/aspose.cells/metered/_index.md b/english/aspose.cells/metered/_index.md index 2142bc5580..29c7577e5b 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: 1100 +weight: 1110 url: /aspose.cells/metered/ is_root: false --- diff --git a/english/aspose.cells/multiplefiltercollection/_index.md b/english/aspose.cells/multiplefiltercollection/_index.md index 6f14b8f640..59d0528974 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: 1110 +weight: 1120 url: /aspose.cells/multiplefiltercollection/ is_root: false --- diff --git a/english/aspose.cells/name/_index.md b/english/aspose.cells/name/_index.md index ed19add000..9069709075 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: 1120 +weight: 1130 url: /aspose.cells/name/ is_root: false --- diff --git a/english/aspose.cells/namecollection/_index.md b/english/aspose.cells/namecollection/_index.md index 0d04338c88..2f2bfd97aa 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: 1130 +weight: 1140 url: /aspose.cells/namecollection/ is_root: false --- diff --git a/english/aspose.cells/namescopetype/_index.md b/english/aspose.cells/namescopetype/_index.md index 34e2a525ff..041ba7798c 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: 2370 +weight: 2390 url: /aspose.cells/namescopetype/ is_root: false --- diff --git a/english/aspose.cells/negativebarformat/_index.md b/english/aspose.cells/negativebarformat/_index.md index 60ab5c1d8c..07e66dae47 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: 1140 +weight: 1150 url: /aspose.cells/negativebarformat/ is_root: false --- diff --git a/english/aspose.cells/numbercategorytype/_index.md b/english/aspose.cells/numbercategorytype/_index.md index 50ea20c447..c4472d9ce0 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: 2380 +weight: 2400 url: /aspose.cells/numbercategorytype/ is_root: false --- diff --git a/english/aspose.cells/odsloadoptions/_index.md b/english/aspose.cells/odsloadoptions/_index.md index b7fc733b6c..7eadb07319 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: 1150 +weight: 1160 url: /aspose.cells/odsloadoptions/ is_root: false --- diff --git a/english/aspose.cells/odssaveoptions/_index.md b/english/aspose.cells/odssaveoptions/_index.md index 04e26a3c11..e4a9789bea 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: 1160 +weight: 1170 url: /aspose.cells/odssaveoptions/ is_root: false --- diff --git a/english/aspose.cells/ooxmlcompliance/_index.md b/english/aspose.cells/ooxmlcompliance/_index.md index d9e0686ab3..96e5feb145 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: 2390 +weight: 2410 url: /aspose.cells/ooxmlcompliance/ is_root: false --- diff --git a/english/aspose.cells/ooxmlcompressiontype/_index.md b/english/aspose.cells/ooxmlcompressiontype/_index.md index 33b701f29f..7796bf7fa3 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: 2400 +weight: 2420 url: /aspose.cells/ooxmlcompressiontype/ is_root: false --- diff --git a/english/aspose.cells/ooxmlsaveoptions/_index.md b/english/aspose.cells/ooxmlsaveoptions/_index.md index e6c50d4f11..4b267a45eb 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: 1170 +weight: 1180 url: /aspose.cells/ooxmlsaveoptions/ is_root: false --- diff --git a/english/aspose.cells/operatortype/_index.md b/english/aspose.cells/operatortype/_index.md index e17e8acf56..bf45e25967 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: 2410 +weight: 2430 url: /aspose.cells/operatortype/ is_root: false --- diff --git a/english/aspose.cells/outline/_index.md b/english/aspose.cells/outline/_index.md index b1a8e0f122..065b97b6e9 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: 1180 +weight: 1190 url: /aspose.cells/outline/ is_root: false --- diff --git a/english/aspose.cells/pagelayoutalignmenttype/_index.md b/english/aspose.cells/pagelayoutalignmenttype/_index.md index 9099402f7e..e0c7beb723 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: 2420 +weight: 2440 url: /aspose.cells/pagelayoutalignmenttype/ is_root: false --- diff --git a/english/aspose.cells/pageorientationtype/_index.md b/english/aspose.cells/pageorientationtype/_index.md index 98a906440c..1835c1d71d 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: 2430 +weight: 2450 url: /aspose.cells/pageorientationtype/ is_root: false --- diff --git a/english/aspose.cells/pagesetup/_index.md b/english/aspose.cells/pagesetup/_index.md index 16c539319d..80199898cf 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: 1190 +weight: 1200 url: /aspose.cells/pagesetup/ is_root: false --- diff --git a/english/aspose.cells/paginatedsaveoptions/_index.md b/english/aspose.cells/paginatedsaveoptions/_index.md index a8883202e0..101fe7cea3 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: 1200 +weight: 1210 url: /aspose.cells/paginatedsaveoptions/ is_root: false --- diff --git a/english/aspose.cells/panecollection/_index.md b/english/aspose.cells/panecollection/_index.md index 4bee70e08c..33df617164 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: 1210 +weight: 1220 url: /aspose.cells/panecollection/ is_root: false --- diff --git a/english/aspose.cells/panestatetype/_index.md b/english/aspose.cells/panestatetype/_index.md index 1cc2c880a5..f1f1248b16 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: 2440 +weight: 2460 url: /aspose.cells/panestatetype/ is_root: false --- diff --git a/english/aspose.cells/papersizetype/_index.md b/english/aspose.cells/papersizetype/_index.md index 27da8dff95..9f7a4ef7f0 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: 2450 +weight: 2470 url: /aspose.cells/papersizetype/ is_root: false --- diff --git a/english/aspose.cells/parametertype/_index.md b/english/aspose.cells/parametertype/_index.md index 4ff128130b..711699c00d 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: 2460 +weight: 2480 url: /aspose.cells/parametertype/ is_root: false --- diff --git a/english/aspose.cells/pasteoperationtype/_index.md b/english/aspose.cells/pasteoperationtype/_index.md index fdba930d27..d76c6afa18 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: 2470 +weight: 2490 url: /aspose.cells/pasteoperationtype/ is_root: false --- diff --git a/english/aspose.cells/pasteoptions/_index.md b/english/aspose.cells/pasteoptions/_index.md index 46deb9ac72..0b62ada2fe 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: 1220 +weight: 1230 url: /aspose.cells/pasteoptions/ is_root: false --- diff --git a/english/aspose.cells/pastetype/_index.md b/english/aspose.cells/pastetype/_index.md index 9ba0ac97c0..79f043e48a 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: 2480 +weight: 2500 url: /aspose.cells/pastetype/ is_root: false --- diff --git a/english/aspose.cells/pdfsaveoptions/_index.md b/english/aspose.cells/pdfsaveoptions/_index.md index ce1acc41a2..5ffa9673da 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: 1230 +weight: 1240 url: /aspose.cells/pdfsaveoptions/ is_root: false --- diff --git a/english/aspose.cells/pptxsaveoptions/_index.md b/english/aspose.cells/pptxsaveoptions/_index.md index d8108d08d9..40ce086b98 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: 1240 +weight: 1250 url: /aspose.cells/pptxsaveoptions/ is_root: false --- diff --git a/english/aspose.cells/printcommentstype/_index.md b/english/aspose.cells/printcommentstype/_index.md index 7f2f47441d..b730a032dc 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: 2490 +weight: 2510 url: /aspose.cells/printcommentstype/ is_root: false --- diff --git a/english/aspose.cells/printerrorstype/_index.md b/english/aspose.cells/printerrorstype/_index.md index 0c5e2ac62d..e6ae98bcf9 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: 2500 +weight: 2520 url: /aspose.cells/printerrorstype/ is_root: false --- diff --git a/english/aspose.cells/printingpagetype/_index.md b/english/aspose.cells/printingpagetype/_index.md index e15f3c9ac8..508f47ad0f 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: 2530 +weight: 2550 url: /aspose.cells/printingpagetype/ is_root: false --- diff --git a/english/aspose.cells/printordertype/_index.md b/english/aspose.cells/printordertype/_index.md index 9028521207..6324bb346f 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: 2510 +weight: 2530 url: /aspose.cells/printordertype/ is_root: false --- diff --git a/english/aspose.cells/printsizetype/_index.md b/english/aspose.cells/printsizetype/_index.md index 26c671ba37..588cccb017 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: 2520 +weight: 2540 url: /aspose.cells/printsizetype/ is_root: false --- diff --git a/english/aspose.cells/protectedrange/_index.md b/english/aspose.cells/protectedrange/_index.md index a706781769..811c3cc673 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: 1250 +weight: 1260 url: /aspose.cells/protectedrange/ is_root: false --- diff --git a/english/aspose.cells/protectedrangecollection/_index.md b/english/aspose.cells/protectedrangecollection/_index.md index 6bd04637bb..9cb405b077 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: 1260 +weight: 1270 url: /aspose.cells/protectedrangecollection/ is_root: false --- diff --git a/english/aspose.cells/protection/_index.md b/english/aspose.cells/protection/_index.md index ec67455d25..4f461a8b28 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: 1270 +weight: 1280 url: /aspose.cells/protection/ is_root: false --- diff --git a/english/aspose.cells/protectiontype/_index.md b/english/aspose.cells/protectiontype/_index.md index 9612abfce5..496e4c0709 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: 2540 +weight: 2560 url: /aspose.cells/protectiontype/ is_root: false --- diff --git a/english/aspose.cells/querytable/_index.md b/english/aspose.cells/querytable/_index.md index 11937ae256..69089cc30c 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: 1280 +weight: 1290 url: /aspose.cells/querytable/ is_root: false --- diff --git a/english/aspose.cells/querytablecollection/_index.md b/english/aspose.cells/querytablecollection/_index.md index 4af4879519..d49e6ea27f 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: 1290 +weight: 1300 url: /aspose.cells/querytablecollection/ is_root: false --- diff --git a/english/aspose.cells/range/_index.md b/english/aspose.cells/range/_index.md index 5bd24fa787..b4aaa61b93 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: 1300 +weight: 1310 url: /aspose.cells/range/ is_root: false --- @@ -59,6 +59,7 @@ The Range type exposes the following members: | [is_intersect](/cells/python-net/aspose.cells/range/is_intersect/#aspose.cells.Range) | Indicates whether the range is intersect. | | [intersect](/cells/python-net/aspose.cells/range/intersect/#aspose.cells.Range) | Returns a [`Range`](/cells/python-net/aspose.cells/range) object that represents the rectangular intersection of two ranges. | | [union_rang](/cells/python-net/aspose.cells/range/union_rang/#aspose.cells.Range) | Returns the union result of two ranges. | +| [union_ranges](/cells/python-net/aspose.cells/range/union_ranges/#list) | Returns the union result of two ranges. | | [union](/cells/python-net/aspose.cells/range/union/#aspose.cells.Range) | Returns the union of two ranges. | | [is_blank](/cells/python-net/aspose.cells/range/is_blank/#) | Indicates whether the range contains values. | | [merge](/cells/python-net/aspose.cells/range/merge/#) | Combines a range of cells into a single cell. | @@ -70,6 +71,7 @@ The Range type exposes the following members: | [copy_data](/cells/python-net/aspose.cells/range/copy_data/#aspose.cells.Range) | Copies cell data (including formulas) from a source range. | | [copy_value](/cells/python-net/aspose.cells/range/copy_value/#aspose.cells.Range) | Copies cell value from a source range. | | [copy_style](/cells/python-net/aspose.cells/range/copy_style/#aspose.cells.Range) | Copies style settings from a source range. | +| [transpose](/cells/python-net/aspose.cells/range/transpose/#) | Transpose (rotate) data from rows to columns or vice versa. | | [get_cell_or_null](/cells/python-net/aspose.cells/range/get_cell_or_null/#int-int) | Gets [`Cell`](/cells/python-net/aspose.cells/cell) object or null in this range. | | [get_offset](/cells/python-net/aspose.cells/range/get_offset/#int-int) | Gets [`Range`](/cells/python-net/aspose.cells/range) range by offset. | diff --git a/english/aspose.cells/range/address/_index.md b/english/aspose.cells/range/address/_index.md index a9f6bb9944..85954f8a6b 100644 --- a/english/aspose.cells/range/address/_index.md +++ b/english/aspose.cells/range/address/_index.md @@ -3,7 +3,7 @@ title: address property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 260 +weight: 280 url: /aspose.cells/range/address/ is_root: false --- diff --git a/english/aspose.cells/range/column_count/_index.md b/english/aspose.cells/range/column_count/_index.md index c94cd2fcf0..194bfc343f 100644 --- a/english/aspose.cells/range/column_count/_index.md +++ b/english/aspose.cells/range/column_count/_index.md @@ -3,7 +3,7 @@ title: column_count property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 270 +weight: 290 url: /aspose.cells/range/column_count/ is_root: false --- diff --git a/english/aspose.cells/range/column_width/_index.md b/english/aspose.cells/range/column_width/_index.md index 72d60f6de4..8234f1f471 100644 --- a/english/aspose.cells/range/column_width/_index.md +++ b/english/aspose.cells/range/column_width/_index.md @@ -3,7 +3,7 @@ title: column_width property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 280 +weight: 300 url: /aspose.cells/range/column_width/ is_root: false --- diff --git a/english/aspose.cells/range/current_region/_index.md b/english/aspose.cells/range/current_region/_index.md index 354f78c87b..8415afe1d4 100644 --- a/english/aspose.cells/range/current_region/_index.md +++ b/english/aspose.cells/range/current_region/_index.md @@ -3,7 +3,7 @@ title: current_region property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 290 +weight: 310 url: /aspose.cells/range/current_region/ is_root: false --- diff --git a/english/aspose.cells/range/entire_column/_index.md b/english/aspose.cells/range/entire_column/_index.md index 14619e82b2..5176466758 100644 --- a/english/aspose.cells/range/entire_column/_index.md +++ b/english/aspose.cells/range/entire_column/_index.md @@ -3,7 +3,7 @@ title: entire_column property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 300 +weight: 320 url: /aspose.cells/range/entire_column/ is_root: false --- diff --git a/english/aspose.cells/range/entire_row/_index.md b/english/aspose.cells/range/entire_row/_index.md index 1e21cd9d75..5295de4da2 100644 --- a/english/aspose.cells/range/entire_row/_index.md +++ b/english/aspose.cells/range/entire_row/_index.md @@ -3,7 +3,7 @@ title: entire_row property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 310 +weight: 330 url: /aspose.cells/range/entire_row/ is_root: false --- diff --git a/english/aspose.cells/range/first_column/_index.md b/english/aspose.cells/range/first_column/_index.md index 81d6b7599f..1517419991 100644 --- a/english/aspose.cells/range/first_column/_index.md +++ b/english/aspose.cells/range/first_column/_index.md @@ -3,7 +3,7 @@ title: first_column property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 320 +weight: 340 url: /aspose.cells/range/first_column/ is_root: false --- diff --git a/english/aspose.cells/range/first_row/_index.md b/english/aspose.cells/range/first_row/_index.md index 8a83df5f50..affe17f161 100644 --- a/english/aspose.cells/range/first_row/_index.md +++ b/english/aspose.cells/range/first_row/_index.md @@ -3,7 +3,7 @@ title: first_row property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 330 +weight: 350 url: /aspose.cells/range/first_row/ is_root: false --- diff --git a/english/aspose.cells/range/height/_index.md b/english/aspose.cells/range/height/_index.md index c2fe48e20d..41269ec17c 100644 --- a/english/aspose.cells/range/height/_index.md +++ b/english/aspose.cells/range/height/_index.md @@ -3,7 +3,7 @@ title: height property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 340 +weight: 360 url: /aspose.cells/range/height/ is_root: false --- diff --git a/english/aspose.cells/range/hyperlinks/_index.md b/english/aspose.cells/range/hyperlinks/_index.md index 25cde30ae9..196ff50006 100644 --- a/english/aspose.cells/range/hyperlinks/_index.md +++ b/english/aspose.cells/range/hyperlinks/_index.md @@ -3,7 +3,7 @@ title: hyperlinks property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 350 +weight: 370 url: /aspose.cells/range/hyperlinks/ is_root: false --- diff --git a/english/aspose.cells/range/left/_index.md b/english/aspose.cells/range/left/_index.md index 27d18ed1cd..e49ecdee08 100644 --- a/english/aspose.cells/range/left/_index.md +++ b/english/aspose.cells/range/left/_index.md @@ -3,7 +3,7 @@ title: left property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 360 +weight: 380 url: /aspose.cells/range/left/ is_root: false --- diff --git a/english/aspose.cells/range/name/_index.md b/english/aspose.cells/range/name/_index.md index ab767a3421..32c1e83897 100644 --- a/english/aspose.cells/range/name/_index.md +++ b/english/aspose.cells/range/name/_index.md @@ -3,7 +3,7 @@ title: name property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 370 +weight: 390 url: /aspose.cells/range/name/ is_root: false --- diff --git a/english/aspose.cells/range/refers_to/_index.md b/english/aspose.cells/range/refers_to/_index.md index 7892d9e6dc..2199db9d60 100644 --- a/english/aspose.cells/range/refers_to/_index.md +++ b/english/aspose.cells/range/refers_to/_index.md @@ -3,7 +3,7 @@ title: refers_to property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 380 +weight: 400 url: /aspose.cells/range/refers_to/ is_root: false --- diff --git a/english/aspose.cells/range/row_count/_index.md b/english/aspose.cells/range/row_count/_index.md index a43740fdd1..a7a6e296fb 100644 --- a/english/aspose.cells/range/row_count/_index.md +++ b/english/aspose.cells/range/row_count/_index.md @@ -3,7 +3,7 @@ title: row_count property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 390 +weight: 410 url: /aspose.cells/range/row_count/ is_root: false --- diff --git a/english/aspose.cells/range/row_height/_index.md b/english/aspose.cells/range/row_height/_index.md index ed5de65568..fd1232bba4 100644 --- a/english/aspose.cells/range/row_height/_index.md +++ b/english/aspose.cells/range/row_height/_index.md @@ -3,7 +3,7 @@ title: row_height property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 400 +weight: 420 url: /aspose.cells/range/row_height/ is_root: false --- diff --git a/english/aspose.cells/range/top/_index.md b/english/aspose.cells/range/top/_index.md index 87797c2e38..2b7cc0197d 100644 --- a/english/aspose.cells/range/top/_index.md +++ b/english/aspose.cells/range/top/_index.md @@ -3,7 +3,7 @@ title: top property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 410 +weight: 430 url: /aspose.cells/range/top/ is_root: false --- diff --git a/english/aspose.cells/range/transpose/_index.md b/english/aspose.cells/range/transpose/_index.md new file mode 100644 index 0000000000..7468de1cd6 --- /dev/null +++ b/english/aspose.cells/range/transpose/_index.md @@ -0,0 +1,28 @@ +--- +title: transpose method +second_title: Aspose.Cells for Python via .NET API References +description: +type: docs +weight: 220 +url: /aspose.cells/range/transpose/ +is_root: false +--- + +## transpose {#} + +Transpose (rotate) data from rows to columns or vice versa. + + + +```python +def transpose(self): + ... +``` + + + + + +### See Also +* module [`aspose.cells`](../../) +* class [`Range`](/cells/python-net/aspose.cells/range) diff --git a/english/aspose.cells/range/un_merge/_index.md b/english/aspose.cells/range/un_merge/_index.md index 80368e14a7..81b130494f 100644 --- a/english/aspose.cells/range/un_merge/_index.md +++ b/english/aspose.cells/range/un_merge/_index.md @@ -3,7 +3,7 @@ title: un_merge method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 220 +weight: 230 url: /aspose.cells/range/un_merge/ is_root: false --- diff --git a/english/aspose.cells/range/union/_index.md b/english/aspose.cells/range/union/_index.md index 8994dc2c63..c482e5abae 100644 --- a/english/aspose.cells/range/union/_index.md +++ b/english/aspose.cells/range/union/_index.md @@ -3,7 +3,7 @@ title: union method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 230 +weight: 240 url: /aspose.cells/range/union/ is_root: false --- @@ -31,7 +31,7 @@ def union(self, range): ### Remarks NOTE: This method is now obsolete. Instead, -please use Range.UnionRang() method. +please use Range.UnionRanges() method. This method will be removed 12 months later since November 2023. Aspose apologizes for any inconvenience you may have experienced. diff --git a/english/aspose.cells/range/union_rang/_index.md b/english/aspose.cells/range/union_rang/_index.md index a8f8b28a4d..6968102c57 100644 --- a/english/aspose.cells/range/union_rang/_index.md +++ b/english/aspose.cells/range/union_rang/_index.md @@ -3,7 +3,7 @@ title: union_rang method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 240 +weight: 250 url: /aspose.cells/range/union_rang/ is_root: false --- @@ -28,7 +28,12 @@ def union_rang(self, range): | Parameter | Type | Description | | :- | :- | :- | | range | [`Range`](/cells/python-net/aspose.cells/range) | The range | +### Remarks +NOTE: This method is now obsolete. Instead, +please use Range.UnionRanges() method. +This method will be removed 12 months later since May 2024. +Aspose apologizes for any inconvenience you may have experienced. ### See Also diff --git a/english/aspose.cells/range/union_ranges/_index.md b/english/aspose.cells/range/union_ranges/_index.md new file mode 100644 index 0000000000..21c065c9e9 --- /dev/null +++ b/english/aspose.cells/range/union_ranges/_index.md @@ -0,0 +1,36 @@ +--- +title: union_ranges method +second_title: Aspose.Cells for Python via .NET API References +description: +type: docs +weight: 260 +url: /aspose.cells/range/union_ranges/ +is_root: false +--- + +## union_ranges {#list} + +Returns the union result of two ranges. + + +### Returns + + +The union of two ranges. + + +```python +def union_ranges(self, ranges): + ... +``` + + +| Parameter | Type | Description | +| :- | :- | :- | +| ranges | list | The range | + + + +### See Also +* module [`aspose.cells`](../../) +* class [`Range`](/cells/python-net/aspose.cells/range) diff --git a/english/aspose.cells/range/value/_index.md b/english/aspose.cells/range/value/_index.md index 0221d993fb..876d64699d 100644 --- a/english/aspose.cells/range/value/_index.md +++ b/english/aspose.cells/range/value/_index.md @@ -3,7 +3,7 @@ title: value property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 420 +weight: 440 url: /aspose.cells/range/value/ is_root: false --- diff --git a/english/aspose.cells/range/width/_index.md b/english/aspose.cells/range/width/_index.md index 0d5015c02d..3734cd7c3e 100644 --- a/english/aspose.cells/range/width/_index.md +++ b/english/aspose.cells/range/width/_index.md @@ -3,7 +3,7 @@ title: width property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 430 +weight: 450 url: /aspose.cells/range/width/ is_root: false --- diff --git a/english/aspose.cells/range/worksheet/_index.md b/english/aspose.cells/range/worksheet/_index.md index 628793b287..9f966bf26c 100644 --- a/english/aspose.cells/range/worksheet/_index.md +++ b/english/aspose.cells/range/worksheet/_index.md @@ -3,7 +3,7 @@ title: worksheet property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 440 +weight: 460 url: /aspose.cells/range/worksheet/ is_root: false --- diff --git a/english/aspose.cells/rangecollection/_index.md b/english/aspose.cells/rangecollection/_index.md index b095655559..929c7b6402 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: 1310 +weight: 1320 url: /aspose.cells/rangecollection/ is_root: false --- diff --git a/english/aspose.cells/referredarea/_index.md b/english/aspose.cells/referredarea/_index.md index efa99559f1..9b71d09dcb 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: 1320 +weight: 1330 url: /aspose.cells/referredarea/ is_root: false --- @@ -22,6 +22,8 @@ The ReferredArea type exposes the following members: | [is_external_link](/cells/python-net/aspose.cells/referredarea/is_external_link) | Indicates whether this is an external link. | | [external_file_name](/cells/python-net/aspose.cells/referredarea/external_file_name) | Get the external file name if this is an external reference. | | [sheet_name](/cells/python-net/aspose.cells/referredarea/sheet_name) | Indicates which sheet this reference is in. | +| [is_entire_row](/cells/python-net/aspose.cells/referredarea/is_entire_row) | Indicates whether this area contains all columns(entire row). | +| [is_entire_column](/cells/python-net/aspose.cells/referredarea/is_entire_column) | Indicates whether this area contains all rows(entire column). | | [is_area](/cells/python-net/aspose.cells/referredarea/is_area) | Indicates whether this is an area. | | [end_column](/cells/python-net/aspose.cells/referredarea/end_column) | The end column of the area. | | [start_column](/cells/python-net/aspose.cells/referredarea/start_column) | The start column of the area. | diff --git a/english/aspose.cells/referredarea/is_entire_column/_index.md b/english/aspose.cells/referredarea/is_entire_column/_index.md new file mode 100644 index 0000000000..bfdcc86552 --- /dev/null +++ b/english/aspose.cells/referredarea/is_entire_column/_index.md @@ -0,0 +1,24 @@ +--- +title: is_entire_column property +second_title: Aspose.Cells for Python via .NET API References +description: +type: docs +weight: 90 +url: /aspose.cells/referredarea/is_entire_column/ +is_root: false +--- + +## is_entire_column property + + +Indicates whether this area contains all rows(entire column). +### Definition: +```python +@property +def is_entire_column(self): + ... +``` + +### See Also +* module [`aspose.cells`](../../) +* class [`ReferredArea`](/cells/python-net/aspose.cells/referredarea) diff --git a/english/aspose.cells/referredarea/is_entire_row/_index.md b/english/aspose.cells/referredarea/is_entire_row/_index.md new file mode 100644 index 0000000000..f0e9177086 --- /dev/null +++ b/english/aspose.cells/referredarea/is_entire_row/_index.md @@ -0,0 +1,24 @@ +--- +title: is_entire_row property +second_title: Aspose.Cells for Python via .NET API References +description: +type: docs +weight: 100 +url: /aspose.cells/referredarea/is_entire_row/ +is_root: false +--- + +## is_entire_row property + + +Indicates whether this area contains all columns(entire row). +### Definition: +```python +@property +def is_entire_row(self): + ... +``` + +### See Also +* module [`aspose.cells`](../../) +* class [`ReferredArea`](/cells/python-net/aspose.cells/referredarea) diff --git a/english/aspose.cells/referredarea/is_external_link/_index.md b/english/aspose.cells/referredarea/is_external_link/_index.md index b475d443de..974d4b496c 100644 --- a/english/aspose.cells/referredarea/is_external_link/_index.md +++ b/english/aspose.cells/referredarea/is_external_link/_index.md @@ -3,7 +3,7 @@ title: is_external_link property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 90 +weight: 110 url: /aspose.cells/referredarea/is_external_link/ is_root: false --- diff --git a/english/aspose.cells/referredarea/sheet_name/_index.md b/english/aspose.cells/referredarea/sheet_name/_index.md index b2b1393b20..5ac7e1610b 100644 --- a/english/aspose.cells/referredarea/sheet_name/_index.md +++ b/english/aspose.cells/referredarea/sheet_name/_index.md @@ -3,7 +3,7 @@ title: sheet_name property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 100 +weight: 120 url: /aspose.cells/referredarea/sheet_name/ is_root: false --- diff --git a/english/aspose.cells/referredarea/start_column/_index.md b/english/aspose.cells/referredarea/start_column/_index.md index 89f887c7d7..10ada18077 100644 --- a/english/aspose.cells/referredarea/start_column/_index.md +++ b/english/aspose.cells/referredarea/start_column/_index.md @@ -3,7 +3,7 @@ title: start_column property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 110 +weight: 130 url: /aspose.cells/referredarea/start_column/ is_root: false --- diff --git a/english/aspose.cells/referredarea/start_row/_index.md b/english/aspose.cells/referredarea/start_row/_index.md index f17042e8a4..2562408fe2 100644 --- a/english/aspose.cells/referredarea/start_row/_index.md +++ b/english/aspose.cells/referredarea/start_row/_index.md @@ -3,7 +3,7 @@ title: start_row property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 120 +weight: 140 url: /aspose.cells/referredarea/start_row/ is_root: false --- diff --git a/english/aspose.cells/referredareacollection/_index.md b/english/aspose.cells/referredareacollection/_index.md index e618aa3b7a..508c355897 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: 1330 +weight: 1340 url: /aspose.cells/referredareacollection/ is_root: false --- diff --git a/english/aspose.cells/renamestrategy/_index.md b/english/aspose.cells/renamestrategy/_index.md index bf445b626d..07da971d7c 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: 2550 +weight: 2570 url: /aspose.cells/renamestrategy/ is_root: false --- diff --git a/english/aspose.cells/replaceoptions/_index.md b/english/aspose.cells/replaceoptions/_index.md index 4a63d064fd..afc5e27f59 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: 1340 +weight: 1350 url: /aspose.cells/replaceoptions/ is_root: false --- diff --git a/english/aspose.cells/resourceloadingtype/_index.md b/english/aspose.cells/resourceloadingtype/_index.md index 1275938e11..6a888d0dfe 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: 2560 +weight: 2580 url: /aspose.cells/resourceloadingtype/ is_root: false --- diff --git a/english/aspose.cells/row/_index.md b/english/aspose.cells/row/_index.md index abfd9c7a33..6d70b66de1 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: 1350 +weight: 1360 url: /aspose.cells/row/ is_root: false --- diff --git a/english/aspose.cells/rowcollection/_index.md b/english/aspose.cells/rowcollection/_index.md index 7cc8e829ba..358cd0b968 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: 1360 +weight: 1370 url: /aspose.cells/rowcollection/ is_root: false --- diff --git a/english/aspose.cells/saveformat/_index.md b/english/aspose.cells/saveformat/_index.md index d25ca9de7a..a49f6a5c81 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: 2570 +weight: 2590 url: /aspose.cells/saveformat/ is_root: false --- diff --git a/english/aspose.cells/saveoptions/_index.md b/english/aspose.cells/saveoptions/_index.md index c8532d4d39..5c9628d254 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: 1370 +weight: 1380 url: /aspose.cells/saveoptions/ is_root: false --- diff --git a/english/aspose.cells/scenario/_index.md b/english/aspose.cells/scenario/_index.md index 1833bba611..0ab8f15cbd 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: 1380 +weight: 1390 url: /aspose.cells/scenario/ is_root: false --- diff --git a/english/aspose.cells/scenariocollection/_index.md b/english/aspose.cells/scenariocollection/_index.md index 1b99510c32..ec92c0bdd1 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: 1390 +weight: 1400 url: /aspose.cells/scenariocollection/ is_root: false --- diff --git a/english/aspose.cells/scenarioinputcell/_index.md b/english/aspose.cells/scenarioinputcell/_index.md index b77296a09b..574ab86022 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: 1400 +weight: 1410 url: /aspose.cells/scenarioinputcell/ is_root: false --- diff --git a/english/aspose.cells/scenarioinputcellcollection/_index.md b/english/aspose.cells/scenarioinputcellcollection/_index.md index 37de36a3f6..278330431c 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: 1410 +weight: 1420 url: /aspose.cells/scenarioinputcellcollection/ is_root: false --- diff --git a/english/aspose.cells/settablechartglobalizationsettings/_index.md b/english/aspose.cells/settablechartglobalizationsettings/_index.md index d0832d1d8c..c6b9af21f7 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: 1420 +weight: 1430 url: /aspose.cells/settablechartglobalizationsettings/ is_root: false --- diff --git a/english/aspose.cells/settableglobalizationsettings/_index.md b/english/aspose.cells/settableglobalizationsettings/_index.md index f97d7b849c..f279b7f9a3 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: 1430 +weight: 1440 url: /aspose.cells/settableglobalizationsettings/ is_root: false --- diff --git a/english/aspose.cells/settablepivotglobalizationsettings/_index.md b/english/aspose.cells/settablepivotglobalizationsettings/_index.md index 4bf0d086e9..83856fe0e3 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: 1440 +weight: 1450 url: /aspose.cells/settablepivotglobalizationsettings/ is_root: false --- diff --git a/english/aspose.cells/sheettype/_index.md b/english/aspose.cells/sheettype/_index.md index 19ea2d0d50..7d4e684474 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: 2580 +weight: 2600 url: /aspose.cells/sheettype/ is_root: false --- diff --git a/english/aspose.cells/shifttype/_index.md b/english/aspose.cells/shifttype/_index.md index 94351c7341..c1ed0f8189 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: 2590 +weight: 2610 url: /aspose.cells/shifttype/ is_root: false --- diff --git a/english/aspose.cells/sortontype/_index.md b/english/aspose.cells/sortontype/_index.md index 1bd24fb876..8224eb94e0 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: 2600 +weight: 2620 url: /aspose.cells/sortontype/ is_root: false --- diff --git a/english/aspose.cells/sortorder/_index.md b/english/aspose.cells/sortorder/_index.md index 13a299d389..50a3958b4d 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: 2610 +weight: 2630 url: /aspose.cells/sortorder/ is_root: false --- diff --git a/english/aspose.cells/spreadsheetml2003saveoptions/_index.md b/english/aspose.cells/spreadsheetml2003saveoptions/_index.md index dc98bd9654..3f39facc9b 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: 1450 +weight: 1460 url: /aspose.cells/spreadsheetml2003saveoptions/ is_root: false --- diff --git a/english/aspose.cells/streamprovideroptions/_index.md b/english/aspose.cells/streamprovideroptions/_index.md index 883426358b..05fd9c796f 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: 1460 +weight: 1470 url: /aspose.cells/streamprovideroptions/ is_root: false --- diff --git a/english/aspose.cells/style/_index.md b/english/aspose.cells/style/_index.md index a9b8a54fc0..b0b0f0b5b5 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: 1470 +weight: 1480 url: /aspose.cells/style/ is_root: false --- diff --git a/english/aspose.cells/styleflag/_index.md b/english/aspose.cells/styleflag/_index.md index c3edb9244e..329ecf1768 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: 1480 +weight: 1490 url: /aspose.cells/styleflag/ is_root: false --- diff --git a/english/aspose.cells/stylemodifyflag/_index.md b/english/aspose.cells/stylemodifyflag/_index.md index 923efa3972..17ee006e1f 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: 2620 +weight: 2640 url: /aspose.cells/stylemodifyflag/ is_root: false --- diff --git a/english/aspose.cells/subtotalsetting/_index.md b/english/aspose.cells/subtotalsetting/_index.md index 3b813ae727..8381b24be2 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: 1490 +weight: 1500 url: /aspose.cells/subtotalsetting/ is_root: false --- diff --git a/english/aspose.cells/svgsaveoptions/_index.md b/english/aspose.cells/svgsaveoptions/_index.md index cc81f1e024..66fa006470 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: 1500 +weight: 1510 url: /aspose.cells/svgsaveoptions/ is_root: false --- diff --git a/english/aspose.cells/systemtimeinterruptmonitor/_index.md b/english/aspose.cells/systemtimeinterruptmonitor/_index.md index 82e33efa06..121746f7ed 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: 1510 +weight: 1520 url: /aspose.cells/systemtimeinterruptmonitor/ is_root: false --- diff --git a/english/aspose.cells/targetmodetype/_index.md b/english/aspose.cells/targetmodetype/_index.md index c15b2f6463..f8dcb081d9 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: 2630 +weight: 2650 url: /aspose.cells/targetmodetype/ is_root: false --- diff --git a/english/aspose.cells/textalignmenttype/_index.md b/english/aspose.cells/textalignmenttype/_index.md index a01ccbc8d5..50fc28ace4 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: 2640 +weight: 2660 url: /aspose.cells/textalignmenttype/ is_root: false --- diff --git a/english/aspose.cells/textcapstype/_index.md b/english/aspose.cells/textcapstype/_index.md index 604f85a3f7..3e1caabd7c 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: 2650 +weight: 2670 url: /aspose.cells/textcapstype/ is_root: false --- diff --git a/english/aspose.cells/textcrosstype/_index.md b/english/aspose.cells/textcrosstype/_index.md index e928fd09b5..0805930181 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: 2660 +weight: 2680 url: /aspose.cells/textcrosstype/ is_root: false --- diff --git a/english/aspose.cells/textdirectiontype/_index.md b/english/aspose.cells/textdirectiontype/_index.md index 2dc3be8e42..38907b4f21 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: 2670 +weight: 2690 url: /aspose.cells/textdirectiontype/ is_root: false --- diff --git a/english/aspose.cells/textorientationtype/_index.md b/english/aspose.cells/textorientationtype/_index.md index 840a05ae54..dae1d0eb85 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: 2680 +weight: 2700 url: /aspose.cells/textorientationtype/ is_root: false --- diff --git a/english/aspose.cells/textstriketype/_index.md b/english/aspose.cells/textstriketype/_index.md index 03a7cbc5ae..eb04b8aa43 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: 2690 +weight: 2710 url: /aspose.cells/textstriketype/ is_root: false --- diff --git a/english/aspose.cells/themecolor/_index.md b/english/aspose.cells/themecolor/_index.md index c4b2b2661d..acab411828 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: 1520 +weight: 1530 url: /aspose.cells/themecolor/ is_root: false --- diff --git a/english/aspose.cells/themecolortype/_index.md b/english/aspose.cells/themecolortype/_index.md index f753aa85c5..23937a1b62 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: 2700 +weight: 2720 url: /aspose.cells/themecolortype/ is_root: false --- diff --git a/english/aspose.cells/threadedcomment/_index.md b/english/aspose.cells/threadedcomment/_index.md index 35f3b1d3f9..f568e529ab 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: 1540 +weight: 1550 url: /aspose.cells/threadedcomment/ is_root: false --- diff --git a/english/aspose.cells/threadedcommentauthor/_index.md b/english/aspose.cells/threadedcommentauthor/_index.md index 6fe2b54ead..87619615a3 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: 1550 +weight: 1560 url: /aspose.cells/threadedcommentauthor/ is_root: false --- diff --git a/english/aspose.cells/threadedcommentauthorcollection/_index.md b/english/aspose.cells/threadedcommentauthorcollection/_index.md index ee1170b1fa..30604a4c1c 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: 1560 +weight: 1570 url: /aspose.cells/threadedcommentauthorcollection/ is_root: false --- diff --git a/english/aspose.cells/threadedcommentcollection/_index.md b/english/aspose.cells/threadedcommentcollection/_index.md index 898089949a..0676e4ab27 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: 1570 +weight: 1580 url: /aspose.cells/threadedcommentcollection/ is_root: false --- diff --git a/english/aspose.cells/threadinterruptmonitor/_index.md b/english/aspose.cells/threadinterruptmonitor/_index.md index 8715ed16fe..5c9818b1c6 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: 1530 +weight: 1540 url: /aspose.cells/threadinterruptmonitor/ is_root: false --- @@ -66,6 +66,7 @@ wb = Workbook("Large.xlsx", lopts) monitor.finish_monitor() monitor.start_monitor(1500) wb.save("result.xlsx") +monitor.finish_monitor() ``` diff --git a/english/aspose.cells/timeperiodtype/_index.md b/english/aspose.cells/timeperiodtype/_index.md index 5a1cdf9a0f..27ccb1e318 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: 2710 +weight: 2730 url: /aspose.cells/timeperiodtype/ is_root: false --- diff --git a/english/aspose.cells/top10/_index.md b/english/aspose.cells/top10/_index.md index a61f80a4d2..9034232036 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: 1580 +weight: 1590 url: /aspose.cells/top10/ is_root: false --- diff --git a/english/aspose.cells/top10filter/_index.md b/english/aspose.cells/top10filter/_index.md index 95dc4ab71e..a755f7a87a 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: 1590 +weight: 1600 url: /aspose.cells/top10filter/ is_root: false --- diff --git a/english/aspose.cells/twocolorgradient/_index.md b/english/aspose.cells/twocolorgradient/_index.md index ec01bc120c..6c3388c0f2 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: 1600 +weight: 1610 url: /aspose.cells/twocolorgradient/ is_root: false --- diff --git a/english/aspose.cells/txtloadoptions/_index.md b/english/aspose.cells/txtloadoptions/_index.md index d83883bbb9..be1a8091af 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: 1610 +weight: 1620 url: /aspose.cells/txtloadoptions/ is_root: false --- diff --git a/english/aspose.cells/txtloadstylestrategy/_index.md b/english/aspose.cells/txtloadstylestrategy/_index.md index ebfa83e8f9..f6803dae7b 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: 2720 +weight: 2740 url: /aspose.cells/txtloadstylestrategy/ is_root: false --- diff --git a/english/aspose.cells/txtsaveoptions/_index.md b/english/aspose.cells/txtsaveoptions/_index.md index 0f49beb238..226eb20cab 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: 1620 +weight: 1630 url: /aspose.cells/txtsaveoptions/ is_root: false --- diff --git a/english/aspose.cells/txtvaluequotetype/_index.md b/english/aspose.cells/txtvaluequotetype/_index.md index 889c3bcaf7..040f280f62 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: 2730 +weight: 2750 url: /aspose.cells/txtvaluequotetype/ is_root: false --- diff --git a/english/aspose.cells/unionrange/_index.md b/english/aspose.cells/unionrange/_index.md index 774beca314..af97f8a0f3 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: 1630 +weight: 1640 url: /aspose.cells/unionrange/ is_root: false --- diff --git a/english/aspose.cells/updatelinkstype/_index.md b/english/aspose.cells/updatelinkstype/_index.md index 001f8c79c8..5d88af464a 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: 2740 +weight: 2760 url: /aspose.cells/updatelinkstype/ is_root: false --- diff --git a/english/aspose.cells/validation/_index.md b/english/aspose.cells/validation/_index.md index c64b08bdde..a65de5e9c5 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: 1640 +weight: 1650 url: /aspose.cells/validation/ is_root: false --- diff --git a/english/aspose.cells/validationalerttype/_index.md b/english/aspose.cells/validationalerttype/_index.md index deb1650930..dec8696398 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: 2750 +weight: 2770 url: /aspose.cells/validationalerttype/ is_root: false --- diff --git a/english/aspose.cells/validationcollection/_index.md b/english/aspose.cells/validationcollection/_index.md index 3b9e1eed98..7f26d66fd1 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: 1650 +weight: 1660 url: /aspose.cells/validationcollection/ is_root: false --- diff --git a/english/aspose.cells/validationtype/_index.md b/english/aspose.cells/validationtype/_index.md index e74b266a36..07b2d45011 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: 2760 +weight: 2780 url: /aspose.cells/validationtype/ is_root: false --- diff --git a/english/aspose.cells/verticalpagebreak/_index.md b/english/aspose.cells/verticalpagebreak/_index.md index dbd29c3743..4558c30c9d 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: 1660 +weight: 1670 url: /aspose.cells/verticalpagebreak/ is_root: false --- diff --git a/english/aspose.cells/verticalpagebreakcollection/_index.md b/english/aspose.cells/verticalpagebreakcollection/_index.md index 8f47e36984..9d8985d685 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: 1670 +weight: 1680 url: /aspose.cells/verticalpagebreakcollection/ is_root: false --- diff --git a/english/aspose.cells/viewtype/_index.md b/english/aspose.cells/viewtype/_index.md index 11d1f7b306..73c8f80280 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: 2770 +weight: 2790 url: /aspose.cells/viewtype/ is_root: false --- diff --git a/english/aspose.cells/visibilitytype/_index.md b/english/aspose.cells/visibilitytype/_index.md index 8bba25ea00..19a5bea04c 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: 2780 +weight: 2800 url: /aspose.cells/visibilitytype/ is_root: false --- diff --git a/english/aspose.cells/warninginfo/_index.md b/english/aspose.cells/warninginfo/_index.md index 4609aa7b10..9c0ed388dc 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: 1680 +weight: 1690 url: /aspose.cells/warninginfo/ is_root: false --- diff --git a/english/aspose.cells/warningtype/_index.md b/english/aspose.cells/warningtype/_index.md index ab3e96e359..fdb497b373 100644 --- a/english/aspose.cells/warningtype/_index.md +++ b/english/aspose.cells/warningtype/_index.md @@ -3,7 +3,7 @@ title: WarningType enumeration second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 2790 +weight: 2810 url: /aspose.cells/warningtype/ is_root: false --- diff --git a/english/aspose.cells/workbook/_index.md b/english/aspose.cells/workbook/_index.md index b2cd876eae..e977d8f32e 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: 1690 +weight: 1700 url: /aspose.cells/workbook/ is_root: false --- diff --git a/english/aspose.cells/workbookdesigner/_index.md b/english/aspose.cells/workbookdesigner/_index.md index b4f4a032b6..dcc02c537c 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: 1700 +weight: 1710 url: /aspose.cells/workbookdesigner/ is_root: false --- diff --git a/english/aspose.cells/workbooksettings/_index.md b/english/aspose.cells/workbooksettings/_index.md index d193ecd463..bd8438bfbf 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: 1710 +weight: 1720 url: /aspose.cells/workbooksettings/ is_root: false --- @@ -51,6 +51,7 @@ The WorkbookSettings type exposes the following members: | [update_links_type](/cells/python-net/aspose.cells/workbooksettings/update_links_type) | Gets and sets how updates external links when the workbook is opened. | | [max_row](/cells/python-net/aspose.cells/workbooksettings/max_row) | Gets the max row index, zero-based. | | [max_column](/cells/python-net/aspose.cells/workbooksettings/max_column) | Gets the max column index, zero-based. | +| [default_style_settings](/cells/python-net/aspose.cells/workbooksettings/default_style_settings) | Gets the settings for default values of style-related properties for this workbook. | | [window_left](/cells/python-net/aspose.cells/workbooksettings/window_left) | The distance from the left edge of the client area to the left edge of the window, in unit of point. | | [window_left_inch](/cells/python-net/aspose.cells/workbooksettings/window_left_inch) | The distance from the left edge of the client area to the left edge of the window.
In unit of inch. | | [window_left_cm](/cells/python-net/aspose.cells/workbooksettings/window_left_cm) | The distance from the left edge of the client area to the left edge of the window.
In unit of centimeter. | diff --git a/english/aspose.cells/workbooksettings/default_style_settings/_index.md b/english/aspose.cells/workbooksettings/default_style_settings/_index.md new file mode 100644 index 0000000000..ee43a4e1cd --- /dev/null +++ b/english/aspose.cells/workbooksettings/default_style_settings/_index.md @@ -0,0 +1,25 @@ +--- +title: default_style_settings property +second_title: Aspose.Cells for Python via .NET API References +description: +type: docs +weight: 160 +url: /aspose.cells/workbooksettings/default_style_settings/ +is_root: false +--- + +## default_style_settings property + + +Gets the settings for default values of style-related properties for this workbook. +### Definition: +```python +@property +def default_style_settings(self): + ... +``` + +### See Also +* module [`aspose.cells`](../../) +* class [`DefaultStyleSettings`](/cells/python-net/aspose.cells/defaultstylesettings) +* class [`WorkbookSettings`](/cells/python-net/aspose.cells/workbooksettings) diff --git a/english/aspose.cells/workbooksettings/display_drawing_objects/_index.md b/english/aspose.cells/workbooksettings/display_drawing_objects/_index.md index 2ed854f592..91672b0625 100644 --- a/english/aspose.cells/workbooksettings/display_drawing_objects/_index.md +++ b/english/aspose.cells/workbooksettings/display_drawing_objects/_index.md @@ -3,7 +3,7 @@ title: display_drawing_objects property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 160 +weight: 170 url: /aspose.cells/workbooksettings/display_drawing_objects/ is_root: false --- diff --git a/english/aspose.cells/workbooksettings/enable_macros/_index.md b/english/aspose.cells/workbooksettings/enable_macros/_index.md index d894c13fa1..efd2a6600e 100644 --- a/english/aspose.cells/workbooksettings/enable_macros/_index.md +++ b/english/aspose.cells/workbooksettings/enable_macros/_index.md @@ -3,7 +3,7 @@ title: enable_macros property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 170 +weight: 180 url: /aspose.cells/workbooksettings/enable_macros/ is_root: false --- diff --git a/english/aspose.cells/workbooksettings/first_visible_tab/_index.md b/english/aspose.cells/workbooksettings/first_visible_tab/_index.md index a3494ce765..e2a54d1b4e 100644 --- a/english/aspose.cells/workbooksettings/first_visible_tab/_index.md +++ b/english/aspose.cells/workbooksettings/first_visible_tab/_index.md @@ -3,7 +3,7 @@ title: first_visible_tab property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 180 +weight: 190 url: /aspose.cells/workbooksettings/first_visible_tab/ is_root: false --- diff --git a/english/aspose.cells/workbooksettings/formula_settings/_index.md b/english/aspose.cells/workbooksettings/formula_settings/_index.md index 45180cb654..66025e9990 100644 --- a/english/aspose.cells/workbooksettings/formula_settings/_index.md +++ b/english/aspose.cells/workbooksettings/formula_settings/_index.md @@ -3,7 +3,7 @@ title: formula_settings property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 190 +weight: 200 url: /aspose.cells/workbooksettings/formula_settings/ is_root: false --- diff --git a/english/aspose.cells/workbooksettings/globalization_settings/_index.md b/english/aspose.cells/workbooksettings/globalization_settings/_index.md index 7be7309b9b..09728451d4 100644 --- a/english/aspose.cells/workbooksettings/globalization_settings/_index.md +++ b/english/aspose.cells/workbooksettings/globalization_settings/_index.md @@ -3,7 +3,7 @@ title: globalization_settings property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 200 +weight: 210 url: /aspose.cells/workbooksettings/globalization_settings/ is_root: false --- diff --git a/english/aspose.cells/workbooksettings/hide_pivot_field_list/_index.md b/english/aspose.cells/workbooksettings/hide_pivot_field_list/_index.md index 31c684493d..6d361f43c8 100644 --- a/english/aspose.cells/workbooksettings/hide_pivot_field_list/_index.md +++ b/english/aspose.cells/workbooksettings/hide_pivot_field_list/_index.md @@ -3,7 +3,7 @@ title: hide_pivot_field_list property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 210 +weight: 220 url: /aspose.cells/workbooksettings/hide_pivot_field_list/ is_root: false --- diff --git a/english/aspose.cells/workbooksettings/is_default_encrypted/_index.md b/english/aspose.cells/workbooksettings/is_default_encrypted/_index.md index 7fbeb1a8b4..fe5355af95 100644 --- a/english/aspose.cells/workbooksettings/is_default_encrypted/_index.md +++ b/english/aspose.cells/workbooksettings/is_default_encrypted/_index.md @@ -3,7 +3,7 @@ title: is_default_encrypted property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 220 +weight: 230 url: /aspose.cells/workbooksettings/is_default_encrypted/ is_root: false --- diff --git a/english/aspose.cells/workbooksettings/is_encrypted/_index.md b/english/aspose.cells/workbooksettings/is_encrypted/_index.md index a5c051524b..2e07c8f9a2 100644 --- a/english/aspose.cells/workbooksettings/is_encrypted/_index.md +++ b/english/aspose.cells/workbooksettings/is_encrypted/_index.md @@ -3,7 +3,7 @@ title: is_encrypted property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 230 +weight: 240 url: /aspose.cells/workbooksettings/is_encrypted/ is_root: false --- diff --git a/english/aspose.cells/workbooksettings/is_h_scroll_bar_visible/_index.md b/english/aspose.cells/workbooksettings/is_h_scroll_bar_visible/_index.md index b9af49e3d1..071728a591 100644 --- a/english/aspose.cells/workbooksettings/is_h_scroll_bar_visible/_index.md +++ b/english/aspose.cells/workbooksettings/is_h_scroll_bar_visible/_index.md @@ -3,7 +3,7 @@ title: is_h_scroll_bar_visible property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 240 +weight: 250 url: /aspose.cells/workbooksettings/is_h_scroll_bar_visible/ is_root: false --- diff --git a/english/aspose.cells/workbooksettings/is_hidden/_index.md b/english/aspose.cells/workbooksettings/is_hidden/_index.md index 3b4e59bd41..becdd147c8 100644 --- a/english/aspose.cells/workbooksettings/is_hidden/_index.md +++ b/english/aspose.cells/workbooksettings/is_hidden/_index.md @@ -3,7 +3,7 @@ title: is_hidden property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 250 +weight: 260 url: /aspose.cells/workbooksettings/is_hidden/ is_root: false --- diff --git a/english/aspose.cells/workbooksettings/is_minimized/_index.md b/english/aspose.cells/workbooksettings/is_minimized/_index.md index 051e6d6478..f0746f6201 100644 --- a/english/aspose.cells/workbooksettings/is_minimized/_index.md +++ b/english/aspose.cells/workbooksettings/is_minimized/_index.md @@ -3,7 +3,7 @@ title: is_minimized property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 260 +weight: 270 url: /aspose.cells/workbooksettings/is_minimized/ is_root: false --- diff --git a/english/aspose.cells/workbooksettings/is_protected/_index.md b/english/aspose.cells/workbooksettings/is_protected/_index.md index 95e906521f..23bb8dd691 100644 --- a/english/aspose.cells/workbooksettings/is_protected/_index.md +++ b/english/aspose.cells/workbooksettings/is_protected/_index.md @@ -3,7 +3,7 @@ title: is_protected property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 270 +weight: 280 url: /aspose.cells/workbooksettings/is_protected/ is_root: false --- diff --git a/english/aspose.cells/workbooksettings/is_v_scroll_bar_visible/_index.md b/english/aspose.cells/workbooksettings/is_v_scroll_bar_visible/_index.md index 0bbdaadef2..26ab061e29 100644 --- a/english/aspose.cells/workbooksettings/is_v_scroll_bar_visible/_index.md +++ b/english/aspose.cells/workbooksettings/is_v_scroll_bar_visible/_index.md @@ -3,7 +3,7 @@ title: is_v_scroll_bar_visible property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 280 +weight: 290 url: /aspose.cells/workbooksettings/is_v_scroll_bar_visible/ is_root: false --- diff --git a/english/aspose.cells/workbooksettings/language_code/_index.md b/english/aspose.cells/workbooksettings/language_code/_index.md index 34fa567f4c..2472e6bf77 100644 --- a/english/aspose.cells/workbooksettings/language_code/_index.md +++ b/english/aspose.cells/workbooksettings/language_code/_index.md @@ -3,7 +3,7 @@ title: language_code property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 290 +weight: 300 url: /aspose.cells/workbooksettings/language_code/ is_root: false --- diff --git a/english/aspose.cells/workbooksettings/max_column/_index.md b/english/aspose.cells/workbooksettings/max_column/_index.md index af2c14dcd6..d4ee7a6a9f 100644 --- a/english/aspose.cells/workbooksettings/max_column/_index.md +++ b/english/aspose.cells/workbooksettings/max_column/_index.md @@ -3,7 +3,7 @@ title: max_column property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 300 +weight: 310 url: /aspose.cells/workbooksettings/max_column/ is_root: false --- diff --git a/english/aspose.cells/workbooksettings/max_row/_index.md b/english/aspose.cells/workbooksettings/max_row/_index.md index 22449a67e9..13da571a21 100644 --- a/english/aspose.cells/workbooksettings/max_row/_index.md +++ b/english/aspose.cells/workbooksettings/max_row/_index.md @@ -3,7 +3,7 @@ title: max_row property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 310 +weight: 320 url: /aspose.cells/workbooksettings/max_row/ is_root: false --- diff --git a/english/aspose.cells/workbooksettings/max_rows_of_shared_formula/_index.md b/english/aspose.cells/workbooksettings/max_rows_of_shared_formula/_index.md index a05c4228e3..b727cd6610 100644 --- a/english/aspose.cells/workbooksettings/max_rows_of_shared_formula/_index.md +++ b/english/aspose.cells/workbooksettings/max_rows_of_shared_formula/_index.md @@ -3,7 +3,7 @@ title: max_rows_of_shared_formula property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 320 +weight: 330 url: /aspose.cells/workbooksettings/max_rows_of_shared_formula/ is_root: false --- diff --git a/english/aspose.cells/workbooksettings/memory_setting/_index.md b/english/aspose.cells/workbooksettings/memory_setting/_index.md index f93cf01857..5d39cc586b 100644 --- a/english/aspose.cells/workbooksettings/memory_setting/_index.md +++ b/english/aspose.cells/workbooksettings/memory_setting/_index.md @@ -3,7 +3,7 @@ title: memory_setting property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 330 +weight: 340 url: /aspose.cells/workbooksettings/memory_setting/ is_root: false --- diff --git a/english/aspose.cells/workbooksettings/number_decimal_separator/_index.md b/english/aspose.cells/workbooksettings/number_decimal_separator/_index.md index 9a2f37fbfc..ff71d96f7f 100644 --- a/english/aspose.cells/workbooksettings/number_decimal_separator/_index.md +++ b/english/aspose.cells/workbooksettings/number_decimal_separator/_index.md @@ -3,7 +3,7 @@ title: number_decimal_separator property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 340 +weight: 350 url: /aspose.cells/workbooksettings/number_decimal_separator/ is_root: false --- diff --git a/english/aspose.cells/workbooksettings/number_group_separator/_index.md b/english/aspose.cells/workbooksettings/number_group_separator/_index.md index 10e1582e77..578f843a05 100644 --- a/english/aspose.cells/workbooksettings/number_group_separator/_index.md +++ b/english/aspose.cells/workbooksettings/number_group_separator/_index.md @@ -3,7 +3,7 @@ title: number_group_separator property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 350 +weight: 360 url: /aspose.cells/workbooksettings/number_group_separator/ is_root: false --- diff --git a/english/aspose.cells/workbooksettings/paper_size/_index.md b/english/aspose.cells/workbooksettings/paper_size/_index.md index a7401a451a..4dc4015fef 100644 --- a/english/aspose.cells/workbooksettings/paper_size/_index.md +++ b/english/aspose.cells/workbooksettings/paper_size/_index.md @@ -3,7 +3,7 @@ title: paper_size property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 360 +weight: 370 url: /aspose.cells/workbooksettings/paper_size/ is_root: false --- diff --git a/english/aspose.cells/workbooksettings/password/_index.md b/english/aspose.cells/workbooksettings/password/_index.md index 5b6c3202ad..87270d7189 100644 --- a/english/aspose.cells/workbooksettings/password/_index.md +++ b/english/aspose.cells/workbooksettings/password/_index.md @@ -3,7 +3,7 @@ title: password property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 370 +weight: 380 url: /aspose.cells/workbooksettings/password/ is_root: false --- diff --git a/english/aspose.cells/workbooksettings/protection_type/_index.md b/english/aspose.cells/workbooksettings/protection_type/_index.md index cdddd9cbe7..0dafa226d8 100644 --- a/english/aspose.cells/workbooksettings/protection_type/_index.md +++ b/english/aspose.cells/workbooksettings/protection_type/_index.md @@ -3,7 +3,7 @@ title: protection_type property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 380 +weight: 390 url: /aspose.cells/workbooksettings/protection_type/ is_root: false --- diff --git a/english/aspose.cells/workbooksettings/quote_prefix_to_style/_index.md b/english/aspose.cells/workbooksettings/quote_prefix_to_style/_index.md index 599aed591d..221d131926 100644 --- a/english/aspose.cells/workbooksettings/quote_prefix_to_style/_index.md +++ b/english/aspose.cells/workbooksettings/quote_prefix_to_style/_index.md @@ -3,7 +3,7 @@ title: quote_prefix_to_style property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 390 +weight: 400 url: /aspose.cells/workbooksettings/quote_prefix_to_style/ is_root: false --- diff --git a/english/aspose.cells/workbooksettings/region/_index.md b/english/aspose.cells/workbooksettings/region/_index.md index e512da67e3..c662343d35 100644 --- a/english/aspose.cells/workbooksettings/region/_index.md +++ b/english/aspose.cells/workbooksettings/region/_index.md @@ -3,7 +3,7 @@ title: region property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 400 +weight: 410 url: /aspose.cells/workbooksettings/region/ is_root: false --- diff --git a/english/aspose.cells/workbooksettings/remove_personal_information/_index.md b/english/aspose.cells/workbooksettings/remove_personal_information/_index.md index c66ed772a9..3ec9b338fd 100644 --- a/english/aspose.cells/workbooksettings/remove_personal_information/_index.md +++ b/english/aspose.cells/workbooksettings/remove_personal_information/_index.md @@ -3,7 +3,7 @@ title: remove_personal_information property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 410 +weight: 420 url: /aspose.cells/workbooksettings/remove_personal_information/ is_root: false --- diff --git a/english/aspose.cells/workbooksettings/repair_load/_index.md b/english/aspose.cells/workbooksettings/repair_load/_index.md index 2956b63f97..0e443f9b44 100644 --- a/english/aspose.cells/workbooksettings/repair_load/_index.md +++ b/english/aspose.cells/workbooksettings/repair_load/_index.md @@ -3,7 +3,7 @@ title: repair_load property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 420 +weight: 430 url: /aspose.cells/workbooksettings/repair_load/ is_root: false --- diff --git a/english/aspose.cells/workbooksettings/resource_provider/_index.md b/english/aspose.cells/workbooksettings/resource_provider/_index.md index 9e6f86f2fe..b65bd5c294 100644 --- a/english/aspose.cells/workbooksettings/resource_provider/_index.md +++ b/english/aspose.cells/workbooksettings/resource_provider/_index.md @@ -3,7 +3,7 @@ title: resource_provider property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 430 +weight: 440 url: /aspose.cells/workbooksettings/resource_provider/ is_root: false --- diff --git a/english/aspose.cells/workbooksettings/shared/_index.md b/english/aspose.cells/workbooksettings/shared/_index.md index 43631f6b33..b4387cd77f 100644 --- a/english/aspose.cells/workbooksettings/shared/_index.md +++ b/english/aspose.cells/workbooksettings/shared/_index.md @@ -3,7 +3,7 @@ title: shared property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 440 +weight: 450 url: /aspose.cells/workbooksettings/shared/ is_root: false --- diff --git a/english/aspose.cells/workbooksettings/sheet_tab_bar_width/_index.md b/english/aspose.cells/workbooksettings/sheet_tab_bar_width/_index.md index e9a9c441eb..cdde911c5b 100644 --- a/english/aspose.cells/workbooksettings/sheet_tab_bar_width/_index.md +++ b/english/aspose.cells/workbooksettings/sheet_tab_bar_width/_index.md @@ -3,7 +3,7 @@ title: sheet_tab_bar_width property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 450 +weight: 460 url: /aspose.cells/workbooksettings/sheet_tab_bar_width/ is_root: false --- diff --git a/english/aspose.cells/workbooksettings/show_tabs/_index.md b/english/aspose.cells/workbooksettings/show_tabs/_index.md index dc10b34c74..54340c3767 100644 --- a/english/aspose.cells/workbooksettings/show_tabs/_index.md +++ b/english/aspose.cells/workbooksettings/show_tabs/_index.md @@ -3,7 +3,7 @@ title: show_tabs property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 460 +weight: 470 url: /aspose.cells/workbooksettings/show_tabs/ is_root: false --- diff --git a/english/aspose.cells/workbooksettings/significant_digits/_index.md b/english/aspose.cells/workbooksettings/significant_digits/_index.md index 8833291232..c2b5bef0ac 100644 --- a/english/aspose.cells/workbooksettings/significant_digits/_index.md +++ b/english/aspose.cells/workbooksettings/significant_digits/_index.md @@ -3,7 +3,7 @@ title: significant_digits property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 470 +weight: 480 url: /aspose.cells/workbooksettings/significant_digits/ is_root: false --- diff --git a/english/aspose.cells/workbooksettings/stream_provider/_index.md b/english/aspose.cells/workbooksettings/stream_provider/_index.md index 36144ed566..8201152a9d 100644 --- a/english/aspose.cells/workbooksettings/stream_provider/_index.md +++ b/english/aspose.cells/workbooksettings/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: 480 +weight: 490 url: /aspose.cells/workbooksettings/stream_provider/ is_root: false --- diff --git a/english/aspose.cells/workbooksettings/update_adjacent_cells_border/_index.md b/english/aspose.cells/workbooksettings/update_adjacent_cells_border/_index.md index e4dfa7ff50..168142ba28 100644 --- a/english/aspose.cells/workbooksettings/update_adjacent_cells_border/_index.md +++ b/english/aspose.cells/workbooksettings/update_adjacent_cells_border/_index.md @@ -3,7 +3,7 @@ title: update_adjacent_cells_border property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 490 +weight: 500 url: /aspose.cells/workbooksettings/update_adjacent_cells_border/ is_root: false --- diff --git a/english/aspose.cells/workbooksettings/update_links_type/_index.md b/english/aspose.cells/workbooksettings/update_links_type/_index.md index da867b0cd1..a0adfe35d1 100644 --- a/english/aspose.cells/workbooksettings/update_links_type/_index.md +++ b/english/aspose.cells/workbooksettings/update_links_type/_index.md @@ -3,7 +3,7 @@ title: update_links_type property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 500 +weight: 510 url: /aspose.cells/workbooksettings/update_links_type/ is_root: false --- diff --git a/english/aspose.cells/workbooksettings/warning_callback/_index.md b/english/aspose.cells/workbooksettings/warning_callback/_index.md index 8b94eba196..3a9652ad6c 100644 --- a/english/aspose.cells/workbooksettings/warning_callback/_index.md +++ b/english/aspose.cells/workbooksettings/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: 510 +weight: 520 url: /aspose.cells/workbooksettings/warning_callback/ is_root: false --- diff --git a/english/aspose.cells/workbooksettings/window_height/_index.md b/english/aspose.cells/workbooksettings/window_height/_index.md index bdea64a57b..f73547c3ca 100644 --- a/english/aspose.cells/workbooksettings/window_height/_index.md +++ b/english/aspose.cells/workbooksettings/window_height/_index.md @@ -3,7 +3,7 @@ title: window_height property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 520 +weight: 530 url: /aspose.cells/workbooksettings/window_height/ is_root: false --- diff --git a/english/aspose.cells/workbooksettings/window_height_cm/_index.md b/english/aspose.cells/workbooksettings/window_height_cm/_index.md index 683ff9bb97..0c4902ea7c 100644 --- a/english/aspose.cells/workbooksettings/window_height_cm/_index.md +++ b/english/aspose.cells/workbooksettings/window_height_cm/_index.md @@ -3,7 +3,7 @@ title: window_height_cm property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 530 +weight: 540 url: /aspose.cells/workbooksettings/window_height_cm/ is_root: false --- diff --git a/english/aspose.cells/workbooksettings/window_height_inch/_index.md b/english/aspose.cells/workbooksettings/window_height_inch/_index.md index 90ce69e491..612c36d0dd 100644 --- a/english/aspose.cells/workbooksettings/window_height_inch/_index.md +++ b/english/aspose.cells/workbooksettings/window_height_inch/_index.md @@ -3,7 +3,7 @@ title: window_height_inch property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 540 +weight: 550 url: /aspose.cells/workbooksettings/window_height_inch/ is_root: false --- diff --git a/english/aspose.cells/workbooksettings/window_left/_index.md b/english/aspose.cells/workbooksettings/window_left/_index.md index 75516e2068..c2ae2cf13b 100644 --- a/english/aspose.cells/workbooksettings/window_left/_index.md +++ b/english/aspose.cells/workbooksettings/window_left/_index.md @@ -3,7 +3,7 @@ title: window_left property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 550 +weight: 560 url: /aspose.cells/workbooksettings/window_left/ is_root: false --- diff --git a/english/aspose.cells/workbooksettings/window_left_cm/_index.md b/english/aspose.cells/workbooksettings/window_left_cm/_index.md index 276e6a7d1f..dcccd83a7e 100644 --- a/english/aspose.cells/workbooksettings/window_left_cm/_index.md +++ b/english/aspose.cells/workbooksettings/window_left_cm/_index.md @@ -3,7 +3,7 @@ title: window_left_cm property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 560 +weight: 570 url: /aspose.cells/workbooksettings/window_left_cm/ is_root: false --- diff --git a/english/aspose.cells/workbooksettings/window_left_inch/_index.md b/english/aspose.cells/workbooksettings/window_left_inch/_index.md index ffc8083e94..c31d9b4239 100644 --- a/english/aspose.cells/workbooksettings/window_left_inch/_index.md +++ b/english/aspose.cells/workbooksettings/window_left_inch/_index.md @@ -3,7 +3,7 @@ title: window_left_inch property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 570 +weight: 580 url: /aspose.cells/workbooksettings/window_left_inch/ is_root: false --- diff --git a/english/aspose.cells/workbooksettings/window_top/_index.md b/english/aspose.cells/workbooksettings/window_top/_index.md index 7562d2d474..ac1d8cc33d 100644 --- a/english/aspose.cells/workbooksettings/window_top/_index.md +++ b/english/aspose.cells/workbooksettings/window_top/_index.md @@ -3,7 +3,7 @@ title: window_top property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 580 +weight: 590 url: /aspose.cells/workbooksettings/window_top/ is_root: false --- diff --git a/english/aspose.cells/workbooksettings/window_top_cm/_index.md b/english/aspose.cells/workbooksettings/window_top_cm/_index.md index 2ed2b71ab5..72103fdf1b 100644 --- a/english/aspose.cells/workbooksettings/window_top_cm/_index.md +++ b/english/aspose.cells/workbooksettings/window_top_cm/_index.md @@ -3,7 +3,7 @@ title: window_top_cm property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 590 +weight: 600 url: /aspose.cells/workbooksettings/window_top_cm/ is_root: false --- diff --git a/english/aspose.cells/workbooksettings/window_top_inch/_index.md b/english/aspose.cells/workbooksettings/window_top_inch/_index.md index 7352cc1e7d..14f3d3e630 100644 --- a/english/aspose.cells/workbooksettings/window_top_inch/_index.md +++ b/english/aspose.cells/workbooksettings/window_top_inch/_index.md @@ -3,7 +3,7 @@ title: window_top_inch property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 600 +weight: 610 url: /aspose.cells/workbooksettings/window_top_inch/ is_root: false --- diff --git a/english/aspose.cells/workbooksettings/window_width/_index.md b/english/aspose.cells/workbooksettings/window_width/_index.md index 63322fd27a..ce020c465c 100644 --- a/english/aspose.cells/workbooksettings/window_width/_index.md +++ b/english/aspose.cells/workbooksettings/window_width/_index.md @@ -3,7 +3,7 @@ title: window_width property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 610 +weight: 620 url: /aspose.cells/workbooksettings/window_width/ is_root: false --- diff --git a/english/aspose.cells/workbooksettings/window_width_cm/_index.md b/english/aspose.cells/workbooksettings/window_width_cm/_index.md index b85e29f83d..b0018c95bb 100644 --- a/english/aspose.cells/workbooksettings/window_width_cm/_index.md +++ b/english/aspose.cells/workbooksettings/window_width_cm/_index.md @@ -3,7 +3,7 @@ title: window_width_cm property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 620 +weight: 630 url: /aspose.cells/workbooksettings/window_width_cm/ is_root: false --- diff --git a/english/aspose.cells/workbooksettings/window_width_inch/_index.md b/english/aspose.cells/workbooksettings/window_width_inch/_index.md index 3c74bc9a9f..11f2149d00 100644 --- a/english/aspose.cells/workbooksettings/window_width_inch/_index.md +++ b/english/aspose.cells/workbooksettings/window_width_inch/_index.md @@ -3,7 +3,7 @@ title: window_width_inch property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 630 +weight: 640 url: /aspose.cells/workbooksettings/window_width_inch/ is_root: false --- diff --git a/english/aspose.cells/workbooksettings/write_protection/_index.md b/english/aspose.cells/workbooksettings/write_protection/_index.md index b3342954ab..f23e783810 100644 --- a/english/aspose.cells/workbooksettings/write_protection/_index.md +++ b/english/aspose.cells/workbooksettings/write_protection/_index.md @@ -3,7 +3,7 @@ title: write_protection property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 640 +weight: 650 url: /aspose.cells/workbooksettings/write_protection/ is_root: false --- diff --git a/english/aspose.cells/worksheet/_index.md b/english/aspose.cells/worksheet/_index.md index e88ae720bd..d767999fa5 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: 1720 +weight: 1730 url: /aspose.cells/worksheet/ is_root: false --- @@ -123,6 +123,7 @@ The Worksheet type exposes the following members: | [un_freeze_panes](/cells/python-net/aspose.cells/worksheet/un_freeze_panes/#) | Unfreezes panes in the worksheet. | | [remove_split](/cells/python-net/aspose.cells/worksheet/remove_split/#) | Removes split window. | | [add_page_breaks](/cells/python-net/aspose.cells/worksheet/add_page_breaks/#str) | Adds page break. | +| [get_advanced_filter](/cells/python-net/aspose.cells/worksheet/get_advanced_filter/#) | Gets the settings of advanced filter. | | [advanced_filter](/cells/python-net/aspose.cells/worksheet/advanced_filter/#bool-str-str-str-bool) | Filters data using complex criteria. | | [remove_auto_filter](/cells/python-net/aspose.cells/worksheet/remove_auto_filter/#) | Removes the auto filter of the worksheet. | | [set_visible](/cells/python-net/aspose.cells/worksheet/set_visible/#bool-bool) | Sets the visible options. | diff --git a/english/aspose.cells/worksheet/active_cell/_index.md b/english/aspose.cells/worksheet/active_cell/_index.md index 0f2c59c8d5..3e9336f126 100644 --- a/english/aspose.cells/worksheet/active_cell/_index.md +++ b/english/aspose.cells/worksheet/active_cell/_index.md @@ -3,7 +3,7 @@ title: active_cell property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 350 +weight: 360 url: /aspose.cells/worksheet/active_cell/ is_root: false --- diff --git a/english/aspose.cells/worksheet/allow_edit_ranges/_index.md b/english/aspose.cells/worksheet/allow_edit_ranges/_index.md index 029caa663a..aa1b820ce1 100644 --- a/english/aspose.cells/worksheet/allow_edit_ranges/_index.md +++ b/english/aspose.cells/worksheet/allow_edit_ranges/_index.md @@ -3,7 +3,7 @@ title: allow_edit_ranges property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 360 +weight: 370 url: /aspose.cells/worksheet/allow_edit_ranges/ is_root: false --- diff --git a/english/aspose.cells/worksheet/auto_filter/_index.md b/english/aspose.cells/worksheet/auto_filter/_index.md index d3a95af579..eec576d4db 100644 --- a/english/aspose.cells/worksheet/auto_filter/_index.md +++ b/english/aspose.cells/worksheet/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: 370 +weight: 380 url: /aspose.cells/worksheet/auto_filter/ is_root: false --- diff --git a/english/aspose.cells/worksheet/background_image/_index.md b/english/aspose.cells/worksheet/background_image/_index.md index df0c968149..f634440d8f 100644 --- a/english/aspose.cells/worksheet/background_image/_index.md +++ b/english/aspose.cells/worksheet/background_image/_index.md @@ -3,7 +3,7 @@ title: background_image property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 380 +weight: 390 url: /aspose.cells/worksheet/background_image/ is_root: false --- diff --git a/english/aspose.cells/worksheet/cell_watches/_index.md b/english/aspose.cells/worksheet/cell_watches/_index.md index 00c6caeb85..409ba7a9fc 100644 --- a/english/aspose.cells/worksheet/cell_watches/_index.md +++ b/english/aspose.cells/worksheet/cell_watches/_index.md @@ -3,7 +3,7 @@ title: cell_watches property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 390 +weight: 400 url: /aspose.cells/worksheet/cell_watches/ is_root: false --- diff --git a/english/aspose.cells/worksheet/cells/_index.md b/english/aspose.cells/worksheet/cells/_index.md index 44c0658b2a..e61dac4676 100644 --- a/english/aspose.cells/worksheet/cells/_index.md +++ b/english/aspose.cells/worksheet/cells/_index.md @@ -3,7 +3,7 @@ title: cells property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 400 +weight: 410 url: /aspose.cells/worksheet/cells/ is_root: false --- diff --git a/english/aspose.cells/worksheet/charts/_index.md b/english/aspose.cells/worksheet/charts/_index.md index 1a9c6f51b5..d10e7f2403 100644 --- a/english/aspose.cells/worksheet/charts/_index.md +++ b/english/aspose.cells/worksheet/charts/_index.md @@ -3,7 +3,7 @@ title: charts property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 410 +weight: 420 url: /aspose.cells/worksheet/charts/ is_root: false --- diff --git a/english/aspose.cells/worksheet/check_boxes/_index.md b/english/aspose.cells/worksheet/check_boxes/_index.md index 72db4677d4..f9aca9f16b 100644 --- a/english/aspose.cells/worksheet/check_boxes/_index.md +++ b/english/aspose.cells/worksheet/check_boxes/_index.md @@ -3,7 +3,7 @@ title: check_boxes property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 420 +weight: 430 url: /aspose.cells/worksheet/check_boxes/ is_root: false --- diff --git a/english/aspose.cells/worksheet/code_name/_index.md b/english/aspose.cells/worksheet/code_name/_index.md index 45a664df85..984a18c07d 100644 --- a/english/aspose.cells/worksheet/code_name/_index.md +++ b/english/aspose.cells/worksheet/code_name/_index.md @@ -3,7 +3,7 @@ title: code_name property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 430 +weight: 440 url: /aspose.cells/worksheet/code_name/ is_root: false --- diff --git a/english/aspose.cells/worksheet/comments/_index.md b/english/aspose.cells/worksheet/comments/_index.md index 4745a41ced..f1ce45f77e 100644 --- a/english/aspose.cells/worksheet/comments/_index.md +++ b/english/aspose.cells/worksheet/comments/_index.md @@ -3,7 +3,7 @@ title: comments property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 440 +weight: 450 url: /aspose.cells/worksheet/comments/ is_root: false --- diff --git a/english/aspose.cells/worksheet/conditional_formattings/_index.md b/english/aspose.cells/worksheet/conditional_formattings/_index.md index e39341a73a..6460dad29b 100644 --- a/english/aspose.cells/worksheet/conditional_formattings/_index.md +++ b/english/aspose.cells/worksheet/conditional_formattings/_index.md @@ -3,7 +3,7 @@ title: conditional_formattings property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 450 +weight: 460 url: /aspose.cells/worksheet/conditional_formattings/ is_root: false --- diff --git a/english/aspose.cells/worksheet/custom_properties/_index.md b/english/aspose.cells/worksheet/custom_properties/_index.md index ca44ae1a67..e3ac5adfef 100644 --- a/english/aspose.cells/worksheet/custom_properties/_index.md +++ b/english/aspose.cells/worksheet/custom_properties/_index.md @@ -3,7 +3,7 @@ title: custom_properties property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 460 +weight: 470 url: /aspose.cells/worksheet/custom_properties/ is_root: false --- diff --git a/english/aspose.cells/worksheet/display_right_to_left/_index.md b/english/aspose.cells/worksheet/display_right_to_left/_index.md index e73ee6928c..17768eeddf 100644 --- a/english/aspose.cells/worksheet/display_right_to_left/_index.md +++ b/english/aspose.cells/worksheet/display_right_to_left/_index.md @@ -3,7 +3,7 @@ title: display_right_to_left property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 470 +weight: 480 url: /aspose.cells/worksheet/display_right_to_left/ is_root: false --- diff --git a/english/aspose.cells/worksheet/display_zeros/_index.md b/english/aspose.cells/worksheet/display_zeros/_index.md index fd4bfc6261..6914028107 100644 --- a/english/aspose.cells/worksheet/display_zeros/_index.md +++ b/english/aspose.cells/worksheet/display_zeros/_index.md @@ -3,7 +3,7 @@ title: display_zeros property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 480 +weight: 490 url: /aspose.cells/worksheet/display_zeros/ is_root: false --- diff --git a/english/aspose.cells/worksheet/error_check_options/_index.md b/english/aspose.cells/worksheet/error_check_options/_index.md index e2e582345f..bb074df7db 100644 --- a/english/aspose.cells/worksheet/error_check_options/_index.md +++ b/english/aspose.cells/worksheet/error_check_options/_index.md @@ -3,7 +3,7 @@ title: error_check_options property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 490 +weight: 500 url: /aspose.cells/worksheet/error_check_options/ is_root: false --- diff --git a/english/aspose.cells/worksheet/first_visible_column/_index.md b/english/aspose.cells/worksheet/first_visible_column/_index.md index f6f389c90d..1dbdbc08c5 100644 --- a/english/aspose.cells/worksheet/first_visible_column/_index.md +++ b/english/aspose.cells/worksheet/first_visible_column/_index.md @@ -3,7 +3,7 @@ title: first_visible_column property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 500 +weight: 510 url: /aspose.cells/worksheet/first_visible_column/ is_root: false --- diff --git a/english/aspose.cells/worksheet/first_visible_row/_index.md b/english/aspose.cells/worksheet/first_visible_row/_index.md index 2908004f5e..33351403af 100644 --- a/english/aspose.cells/worksheet/first_visible_row/_index.md +++ b/english/aspose.cells/worksheet/first_visible_row/_index.md @@ -3,7 +3,7 @@ title: first_visible_row property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 510 +weight: 520 url: /aspose.cells/worksheet/first_visible_row/ is_root: false --- diff --git a/english/aspose.cells/worksheet/get_advanced_filter/_index.md b/english/aspose.cells/worksheet/get_advanced_filter/_index.md new file mode 100644 index 0000000000..a4ed2cda1e --- /dev/null +++ b/english/aspose.cells/worksheet/get_advanced_filter/_index.md @@ -0,0 +1,33 @@ +--- +title: get_advanced_filter method +second_title: Aspose.Cells for Python via .NET API References +description: +type: docs +weight: 150 +url: /aspose.cells/worksheet/get_advanced_filter/ +is_root: false +--- + +## get_advanced_filter {#} + +Gets the settings of advanced filter. + + +### Returns + + + + + +```python +def get_advanced_filter(self): + ... +``` + + + + + +### See Also +* module [`aspose.cells`](../../) +* class [`Worksheet`](/cells/python-net/aspose.cells/worksheet) diff --git a/english/aspose.cells/worksheet/get_freezed_panes/_index.md b/english/aspose.cells/worksheet/get_freezed_panes/_index.md index c3199cbb85..7626dd8f42 100644 --- a/english/aspose.cells/worksheet/get_freezed_panes/_index.md +++ b/english/aspose.cells/worksheet/get_freezed_panes/_index.md @@ -3,7 +3,7 @@ title: get_freezed_panes method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 150 +weight: 160 url: /aspose.cells/worksheet/get_freezed_panes/ is_root: false --- diff --git a/english/aspose.cells/worksheet/get_panes/_index.md b/english/aspose.cells/worksheet/get_panes/_index.md index 69fb1821da..00b2c0c341 100644 --- a/english/aspose.cells/worksheet/get_panes/_index.md +++ b/english/aspose.cells/worksheet/get_panes/_index.md @@ -3,7 +3,7 @@ title: get_panes method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 160 +weight: 170 url: /aspose.cells/worksheet/get_panes/ is_root: false --- diff --git a/english/aspose.cells/worksheet/get_printing_page_breaks/_index.md b/english/aspose.cells/worksheet/get_printing_page_breaks/_index.md index 33ed137ea0..0bee9395e0 100644 --- a/english/aspose.cells/worksheet/get_printing_page_breaks/_index.md +++ b/english/aspose.cells/worksheet/get_printing_page_breaks/_index.md @@ -3,7 +3,7 @@ title: get_printing_page_breaks method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 170 +weight: 180 url: /aspose.cells/worksheet/get_printing_page_breaks/ is_root: false --- diff --git a/english/aspose.cells/worksheet/get_selected_ranges/_index.md b/english/aspose.cells/worksheet/get_selected_ranges/_index.md index 681267370f..4dc62a2cfc 100644 --- a/english/aspose.cells/worksheet/get_selected_ranges/_index.md +++ b/english/aspose.cells/worksheet/get_selected_ranges/_index.md @@ -3,7 +3,7 @@ title: get_selected_ranges method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 180 +weight: 190 url: /aspose.cells/worksheet/get_selected_ranges/ is_root: false --- diff --git a/english/aspose.cells/worksheet/has_autofilter/_index.md b/english/aspose.cells/worksheet/has_autofilter/_index.md index c9c484b623..2bda1015d3 100644 --- a/english/aspose.cells/worksheet/has_autofilter/_index.md +++ b/english/aspose.cells/worksheet/has_autofilter/_index.md @@ -3,7 +3,7 @@ title: has_autofilter property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 520 +weight: 530 url: /aspose.cells/worksheet/has_autofilter/ is_root: false --- diff --git a/english/aspose.cells/worksheet/horizontal_page_breaks/_index.md b/english/aspose.cells/worksheet/horizontal_page_breaks/_index.md index 44a5487ff4..ec07ed9967 100644 --- a/english/aspose.cells/worksheet/horizontal_page_breaks/_index.md +++ b/english/aspose.cells/worksheet/horizontal_page_breaks/_index.md @@ -3,7 +3,7 @@ title: horizontal_page_breaks property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 530 +weight: 540 url: /aspose.cells/worksheet/horizontal_page_breaks/ is_root: false --- diff --git a/english/aspose.cells/worksheet/hyperlinks/_index.md b/english/aspose.cells/worksheet/hyperlinks/_index.md index 1f5f4c6bb5..2da22ba2b4 100644 --- a/english/aspose.cells/worksheet/hyperlinks/_index.md +++ b/english/aspose.cells/worksheet/hyperlinks/_index.md @@ -3,7 +3,7 @@ title: hyperlinks property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 540 +weight: 550 url: /aspose.cells/worksheet/hyperlinks/ is_root: false --- diff --git a/english/aspose.cells/worksheet/index/_index.md b/english/aspose.cells/worksheet/index/_index.md index 9b52a9dbc1..602649766b 100644 --- a/english/aspose.cells/worksheet/index/_index.md +++ b/english/aspose.cells/worksheet/index/_index.md @@ -3,7 +3,7 @@ title: index property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 550 +weight: 560 url: /aspose.cells/worksheet/index/ is_root: false --- diff --git a/english/aspose.cells/worksheet/is_gridlines_visible/_index.md b/english/aspose.cells/worksheet/is_gridlines_visible/_index.md index 1954bb2b30..9c0bc47e91 100644 --- a/english/aspose.cells/worksheet/is_gridlines_visible/_index.md +++ b/english/aspose.cells/worksheet/is_gridlines_visible/_index.md @@ -3,7 +3,7 @@ title: is_gridlines_visible property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 560 +weight: 570 url: /aspose.cells/worksheet/is_gridlines_visible/ is_root: false --- diff --git a/english/aspose.cells/worksheet/is_outline_shown/_index.md b/english/aspose.cells/worksheet/is_outline_shown/_index.md index b369908c9c..cb8d2ab04c 100644 --- a/english/aspose.cells/worksheet/is_outline_shown/_index.md +++ b/english/aspose.cells/worksheet/is_outline_shown/_index.md @@ -3,7 +3,7 @@ title: is_outline_shown property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 570 +weight: 580 url: /aspose.cells/worksheet/is_outline_shown/ is_root: false --- diff --git a/english/aspose.cells/worksheet/is_page_break_preview/_index.md b/english/aspose.cells/worksheet/is_page_break_preview/_index.md index 2f0b568285..33a6ca6fdb 100644 --- a/english/aspose.cells/worksheet/is_page_break_preview/_index.md +++ b/english/aspose.cells/worksheet/is_page_break_preview/_index.md @@ -3,7 +3,7 @@ title: is_page_break_preview property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 580 +weight: 590 url: /aspose.cells/worksheet/is_page_break_preview/ is_root: false --- diff --git a/english/aspose.cells/worksheet/is_protected/_index.md b/english/aspose.cells/worksheet/is_protected/_index.md index 0f7ba73799..690e78c99e 100644 --- a/english/aspose.cells/worksheet/is_protected/_index.md +++ b/english/aspose.cells/worksheet/is_protected/_index.md @@ -3,7 +3,7 @@ title: is_protected property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 590 +weight: 600 url: /aspose.cells/worksheet/is_protected/ is_root: false --- diff --git a/english/aspose.cells/worksheet/is_row_column_headers_visible/_index.md b/english/aspose.cells/worksheet/is_row_column_headers_visible/_index.md index 458a112ba7..667217087e 100644 --- a/english/aspose.cells/worksheet/is_row_column_headers_visible/_index.md +++ b/english/aspose.cells/worksheet/is_row_column_headers_visible/_index.md @@ -3,7 +3,7 @@ title: is_row_column_headers_visible property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 600 +weight: 610 url: /aspose.cells/worksheet/is_row_column_headers_visible/ is_root: false --- diff --git a/english/aspose.cells/worksheet/is_ruler_visible/_index.md b/english/aspose.cells/worksheet/is_ruler_visible/_index.md index 6e95db798a..ddef0dc30d 100644 --- a/english/aspose.cells/worksheet/is_ruler_visible/_index.md +++ b/english/aspose.cells/worksheet/is_ruler_visible/_index.md @@ -3,7 +3,7 @@ title: is_ruler_visible property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 610 +weight: 620 url: /aspose.cells/worksheet/is_ruler_visible/ is_root: false --- diff --git a/english/aspose.cells/worksheet/is_selected/_index.md b/english/aspose.cells/worksheet/is_selected/_index.md index 8a9384783c..2b3ba0f97d 100644 --- a/english/aspose.cells/worksheet/is_selected/_index.md +++ b/english/aspose.cells/worksheet/is_selected/_index.md @@ -3,7 +3,7 @@ title: is_selected property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 620 +weight: 630 url: /aspose.cells/worksheet/is_selected/ is_root: false --- diff --git a/english/aspose.cells/worksheet/is_visible/_index.md b/english/aspose.cells/worksheet/is_visible/_index.md index c7336f7af2..d46b9f5435 100644 --- a/english/aspose.cells/worksheet/is_visible/_index.md +++ b/english/aspose.cells/worksheet/is_visible/_index.md @@ -3,7 +3,7 @@ title: is_visible property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 630 +weight: 640 url: /aspose.cells/worksheet/is_visible/ is_root: false --- diff --git a/english/aspose.cells/worksheet/list_objects/_index.md b/english/aspose.cells/worksheet/list_objects/_index.md index 4600e72471..7326b79879 100644 --- a/english/aspose.cells/worksheet/list_objects/_index.md +++ b/english/aspose.cells/worksheet/list_objects/_index.md @@ -3,7 +3,7 @@ title: list_objects property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 640 +weight: 650 url: /aspose.cells/worksheet/list_objects/ is_root: false --- diff --git a/english/aspose.cells/worksheet/move_to/_index.md b/english/aspose.cells/worksheet/move_to/_index.md index 79981de29c..9f1f4bf85a 100644 --- a/english/aspose.cells/worksheet/move_to/_index.md +++ b/english/aspose.cells/worksheet/move_to/_index.md @@ -3,7 +3,7 @@ title: move_to method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 190 +weight: 200 url: /aspose.cells/worksheet/move_to/ is_root: false --- diff --git a/english/aspose.cells/worksheet/name/_index.md b/english/aspose.cells/worksheet/name/_index.md index 14545cca76..2f09d46576 100644 --- a/english/aspose.cells/worksheet/name/_index.md +++ b/english/aspose.cells/worksheet/name/_index.md @@ -3,7 +3,7 @@ title: name property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 650 +weight: 660 url: /aspose.cells/worksheet/name/ is_root: false --- diff --git a/english/aspose.cells/worksheet/ole_objects/_index.md b/english/aspose.cells/worksheet/ole_objects/_index.md index 3ffbc5b419..88403acfd4 100644 --- a/english/aspose.cells/worksheet/ole_objects/_index.md +++ b/english/aspose.cells/worksheet/ole_objects/_index.md @@ -3,7 +3,7 @@ title: ole_objects property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 660 +weight: 670 url: /aspose.cells/worksheet/ole_objects/ is_root: false --- diff --git a/english/aspose.cells/worksheet/outline/_index.md b/english/aspose.cells/worksheet/outline/_index.md index c60ff7f238..ba4f737540 100644 --- a/english/aspose.cells/worksheet/outline/_index.md +++ b/english/aspose.cells/worksheet/outline/_index.md @@ -3,7 +3,7 @@ title: outline property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 670 +weight: 680 url: /aspose.cells/worksheet/outline/ is_root: false --- diff --git a/english/aspose.cells/worksheet/page_setup/_index.md b/english/aspose.cells/worksheet/page_setup/_index.md index c5e8546570..a517a723b5 100644 --- a/english/aspose.cells/worksheet/page_setup/_index.md +++ b/english/aspose.cells/worksheet/page_setup/_index.md @@ -3,7 +3,7 @@ title: page_setup property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 680 +weight: 690 url: /aspose.cells/worksheet/page_setup/ is_root: false --- diff --git a/english/aspose.cells/worksheet/pane_state/_index.md b/english/aspose.cells/worksheet/pane_state/_index.md index f82577d511..cd1c50e62f 100644 --- a/english/aspose.cells/worksheet/pane_state/_index.md +++ b/english/aspose.cells/worksheet/pane_state/_index.md @@ -3,7 +3,7 @@ title: pane_state property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 690 +weight: 700 url: /aspose.cells/worksheet/pane_state/ is_root: false --- diff --git a/english/aspose.cells/worksheet/pictures/_index.md b/english/aspose.cells/worksheet/pictures/_index.md index 6b132c91db..2f4830094c 100644 --- a/english/aspose.cells/worksheet/pictures/_index.md +++ b/english/aspose.cells/worksheet/pictures/_index.md @@ -3,7 +3,7 @@ title: pictures property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 700 +weight: 710 url: /aspose.cells/worksheet/pictures/ is_root: false --- diff --git a/english/aspose.cells/worksheet/pivot_tables/_index.md b/english/aspose.cells/worksheet/pivot_tables/_index.md index aa1776472b..2e90a0afcd 100644 --- a/english/aspose.cells/worksheet/pivot_tables/_index.md +++ b/english/aspose.cells/worksheet/pivot_tables/_index.md @@ -3,7 +3,7 @@ title: pivot_tables property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 710 +weight: 720 url: /aspose.cells/worksheet/pivot_tables/ is_root: false --- diff --git a/english/aspose.cells/worksheet/protect/_index.md b/english/aspose.cells/worksheet/protect/_index.md index a2777bf77a..005de519fd 100644 --- a/english/aspose.cells/worksheet/protect/_index.md +++ b/english/aspose.cells/worksheet/protect/_index.md @@ -3,7 +3,7 @@ title: protect method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 200 +weight: 210 url: /aspose.cells/worksheet/protect/ is_root: false --- diff --git a/english/aspose.cells/worksheet/protection/_index.md b/english/aspose.cells/worksheet/protection/_index.md index add958b825..f44ccb965b 100644 --- a/english/aspose.cells/worksheet/protection/_index.md +++ b/english/aspose.cells/worksheet/protection/_index.md @@ -3,7 +3,7 @@ title: protection property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 720 +weight: 730 url: /aspose.cells/worksheet/protection/ is_root: false --- diff --git a/english/aspose.cells/worksheet/query_tables/_index.md b/english/aspose.cells/worksheet/query_tables/_index.md index 8dcaea6001..0ef4a331bc 100644 --- a/english/aspose.cells/worksheet/query_tables/_index.md +++ b/english/aspose.cells/worksheet/query_tables/_index.md @@ -3,7 +3,7 @@ title: query_tables property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 730 +weight: 740 url: /aspose.cells/worksheet/query_tables/ is_root: false --- diff --git a/english/aspose.cells/worksheet/refresh_pivot_tables/_index.md b/english/aspose.cells/worksheet/refresh_pivot_tables/_index.md index c9358b172d..5e6640ae01 100644 --- a/english/aspose.cells/worksheet/refresh_pivot_tables/_index.md +++ b/english/aspose.cells/worksheet/refresh_pivot_tables/_index.md @@ -3,7 +3,7 @@ title: refresh_pivot_tables method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 210 +weight: 220 url: /aspose.cells/worksheet/refresh_pivot_tables/ is_root: false --- diff --git a/english/aspose.cells/worksheet/remove/_index.md b/english/aspose.cells/worksheet/remove/_index.md index 99b358d430..0090be78f2 100644 --- a/english/aspose.cells/worksheet/remove/_index.md +++ b/english/aspose.cells/worksheet/remove/_index.md @@ -3,7 +3,7 @@ title: remove method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 220 +weight: 230 url: /aspose.cells/worksheet/remove/ is_root: false --- diff --git a/english/aspose.cells/worksheet/remove_all_drawing_objects/_index.md b/english/aspose.cells/worksheet/remove_all_drawing_objects/_index.md index f69c8c230d..9c2a4c1f23 100644 --- a/english/aspose.cells/worksheet/remove_all_drawing_objects/_index.md +++ b/english/aspose.cells/worksheet/remove_all_drawing_objects/_index.md @@ -3,7 +3,7 @@ title: remove_all_drawing_objects method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 230 +weight: 240 url: /aspose.cells/worksheet/remove_all_drawing_objects/ is_root: false --- diff --git a/english/aspose.cells/worksheet/remove_auto_filter/_index.md b/english/aspose.cells/worksheet/remove_auto_filter/_index.md index 881fa625a8..eb4180c6a1 100644 --- a/english/aspose.cells/worksheet/remove_auto_filter/_index.md +++ b/english/aspose.cells/worksheet/remove_auto_filter/_index.md @@ -3,7 +3,7 @@ title: remove_auto_filter method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 240 +weight: 250 url: /aspose.cells/worksheet/remove_auto_filter/ is_root: false --- diff --git a/english/aspose.cells/worksheet/remove_split/_index.md b/english/aspose.cells/worksheet/remove_split/_index.md index d17f4e69c9..3c76c3615c 100644 --- a/english/aspose.cells/worksheet/remove_split/_index.md +++ b/english/aspose.cells/worksheet/remove_split/_index.md @@ -3,7 +3,7 @@ title: remove_split method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 250 +weight: 260 url: /aspose.cells/worksheet/remove_split/ is_root: false --- diff --git a/english/aspose.cells/worksheet/replace/_index.md b/english/aspose.cells/worksheet/replace/_index.md index 113d013778..84cbc1de4f 100644 --- a/english/aspose.cells/worksheet/replace/_index.md +++ b/english/aspose.cells/worksheet/replace/_index.md @@ -3,7 +3,7 @@ title: replace method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 260 +weight: 270 url: /aspose.cells/worksheet/replace/ is_root: false --- diff --git a/english/aspose.cells/worksheet/scenarios/_index.md b/english/aspose.cells/worksheet/scenarios/_index.md index 05aeb56114..953e37deec 100644 --- a/english/aspose.cells/worksheet/scenarios/_index.md +++ b/english/aspose.cells/worksheet/scenarios/_index.md @@ -3,7 +3,7 @@ title: scenarios property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 740 +weight: 750 url: /aspose.cells/worksheet/scenarios/ is_root: false --- diff --git a/english/aspose.cells/worksheet/select_range/_index.md b/english/aspose.cells/worksheet/select_range/_index.md index b48855311e..357d7676d0 100644 --- a/english/aspose.cells/worksheet/select_range/_index.md +++ b/english/aspose.cells/worksheet/select_range/_index.md @@ -3,7 +3,7 @@ title: select_range method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 270 +weight: 280 url: /aspose.cells/worksheet/select_range/ is_root: false --- diff --git a/english/aspose.cells/worksheet/set_visible/_index.md b/english/aspose.cells/worksheet/set_visible/_index.md index 8c9de30683..3311e521db 100644 --- a/english/aspose.cells/worksheet/set_visible/_index.md +++ b/english/aspose.cells/worksheet/set_visible/_index.md @@ -3,7 +3,7 @@ title: set_visible method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 280 +weight: 290 url: /aspose.cells/worksheet/set_visible/ is_root: false --- diff --git a/english/aspose.cells/worksheet/shapes/_index.md b/english/aspose.cells/worksheet/shapes/_index.md index de6185f3f9..d6b3ecc65b 100644 --- a/english/aspose.cells/worksheet/shapes/_index.md +++ b/english/aspose.cells/worksheet/shapes/_index.md @@ -3,7 +3,7 @@ title: shapes property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 750 +weight: 760 url: /aspose.cells/worksheet/shapes/ is_root: false --- diff --git a/english/aspose.cells/worksheet/show_formulas/_index.md b/english/aspose.cells/worksheet/show_formulas/_index.md index 0399547185..4c74d7a186 100644 --- a/english/aspose.cells/worksheet/show_formulas/_index.md +++ b/english/aspose.cells/worksheet/show_formulas/_index.md @@ -3,7 +3,7 @@ title: show_formulas property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 760 +weight: 770 url: /aspose.cells/worksheet/show_formulas/ is_root: false --- diff --git a/english/aspose.cells/worksheet/slicers/_index.md b/english/aspose.cells/worksheet/slicers/_index.md index 35a518c0a4..52a3d216c0 100644 --- a/english/aspose.cells/worksheet/slicers/_index.md +++ b/english/aspose.cells/worksheet/slicers/_index.md @@ -3,7 +3,7 @@ title: slicers property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 770 +weight: 780 url: /aspose.cells/worksheet/slicers/ is_root: false --- diff --git a/english/aspose.cells/worksheet/smart_tag_setting/_index.md b/english/aspose.cells/worksheet/smart_tag_setting/_index.md index 4f6dae0906..d00f333dd4 100644 --- a/english/aspose.cells/worksheet/smart_tag_setting/_index.md +++ b/english/aspose.cells/worksheet/smart_tag_setting/_index.md @@ -3,7 +3,7 @@ title: smart_tag_setting property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 780 +weight: 790 url: /aspose.cells/worksheet/smart_tag_setting/ is_root: false --- diff --git a/english/aspose.cells/worksheet/sparkline_groups/_index.md b/english/aspose.cells/worksheet/sparkline_groups/_index.md index b597155a90..a105dceef9 100644 --- a/english/aspose.cells/worksheet/sparkline_groups/_index.md +++ b/english/aspose.cells/worksheet/sparkline_groups/_index.md @@ -3,7 +3,7 @@ title: sparkline_groups property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 790 +weight: 800 url: /aspose.cells/worksheet/sparkline_groups/ is_root: false --- diff --git a/english/aspose.cells/worksheet/split/_index.md b/english/aspose.cells/worksheet/split/_index.md index 208e48688d..6868e1ee16 100644 --- a/english/aspose.cells/worksheet/split/_index.md +++ b/english/aspose.cells/worksheet/split/_index.md @@ -3,7 +3,7 @@ title: split method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 290 +weight: 300 url: /aspose.cells/worksheet/split/ is_root: false --- diff --git a/english/aspose.cells/worksheet/start_access_cache/_index.md b/english/aspose.cells/worksheet/start_access_cache/_index.md index 93cec4fe1d..abb00422ae 100644 --- a/english/aspose.cells/worksheet/start_access_cache/_index.md +++ b/english/aspose.cells/worksheet/start_access_cache/_index.md @@ -3,7 +3,7 @@ title: start_access_cache method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 300 +weight: 310 url: /aspose.cells/worksheet/start_access_cache/ is_root: false --- diff --git a/english/aspose.cells/worksheet/tab_color/_index.md b/english/aspose.cells/worksheet/tab_color/_index.md index a22a6f7769..540874db80 100644 --- a/english/aspose.cells/worksheet/tab_color/_index.md +++ b/english/aspose.cells/worksheet/tab_color/_index.md @@ -3,7 +3,7 @@ title: tab_color property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 800 +weight: 810 url: /aspose.cells/worksheet/tab_color/ is_root: false --- diff --git a/english/aspose.cells/worksheet/tab_id/_index.md b/english/aspose.cells/worksheet/tab_id/_index.md index 243e4fd952..c23d2e330e 100644 --- a/english/aspose.cells/worksheet/tab_id/_index.md +++ b/english/aspose.cells/worksheet/tab_id/_index.md @@ -3,7 +3,7 @@ title: tab_id property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 810 +weight: 820 url: /aspose.cells/worksheet/tab_id/ is_root: false --- diff --git a/english/aspose.cells/worksheet/text_boxes/_index.md b/english/aspose.cells/worksheet/text_boxes/_index.md index 2ed10c7253..7506ac5581 100644 --- a/english/aspose.cells/worksheet/text_boxes/_index.md +++ b/english/aspose.cells/worksheet/text_boxes/_index.md @@ -3,7 +3,7 @@ title: text_boxes property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 820 +weight: 830 url: /aspose.cells/worksheet/text_boxes/ is_root: false --- diff --git a/english/aspose.cells/worksheet/timelines/_index.md b/english/aspose.cells/worksheet/timelines/_index.md index 31c3e7d32f..2ad297f369 100644 --- a/english/aspose.cells/worksheet/timelines/_index.md +++ b/english/aspose.cells/worksheet/timelines/_index.md @@ -3,7 +3,7 @@ title: timelines property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 830 +weight: 840 url: /aspose.cells/worksheet/timelines/ is_root: false --- diff --git a/english/aspose.cells/worksheet/transition_entry/_index.md b/english/aspose.cells/worksheet/transition_entry/_index.md index 20dbf726bf..fbc7545c73 100644 --- a/english/aspose.cells/worksheet/transition_entry/_index.md +++ b/english/aspose.cells/worksheet/transition_entry/_index.md @@ -3,7 +3,7 @@ title: transition_entry property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 840 +weight: 850 url: /aspose.cells/worksheet/transition_entry/ is_root: false --- diff --git a/english/aspose.cells/worksheet/transition_evaluation/_index.md b/english/aspose.cells/worksheet/transition_evaluation/_index.md index 7d33cd7be8..01dc1c9fe5 100644 --- a/english/aspose.cells/worksheet/transition_evaluation/_index.md +++ b/english/aspose.cells/worksheet/transition_evaluation/_index.md @@ -3,7 +3,7 @@ title: transition_evaluation property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 850 +weight: 860 url: /aspose.cells/worksheet/transition_evaluation/ is_root: false --- diff --git a/english/aspose.cells/worksheet/type/_index.md b/english/aspose.cells/worksheet/type/_index.md index d21a753d4c..81ae6e6502 100644 --- a/english/aspose.cells/worksheet/type/_index.md +++ b/english/aspose.cells/worksheet/type/_index.md @@ -3,7 +3,7 @@ title: type property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 860 +weight: 870 url: /aspose.cells/worksheet/type/ is_root: false --- diff --git a/english/aspose.cells/worksheet/un_freeze_panes/_index.md b/english/aspose.cells/worksheet/un_freeze_panes/_index.md index 7811f5f524..8fc4b3842c 100644 --- a/english/aspose.cells/worksheet/un_freeze_panes/_index.md +++ b/english/aspose.cells/worksheet/un_freeze_panes/_index.md @@ -3,7 +3,7 @@ title: un_freeze_panes method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 310 +weight: 320 url: /aspose.cells/worksheet/un_freeze_panes/ is_root: false --- diff --git a/english/aspose.cells/worksheet/unique_id/_index.md b/english/aspose.cells/worksheet/unique_id/_index.md index 55f5e0ef84..8842f4809e 100644 --- a/english/aspose.cells/worksheet/unique_id/_index.md +++ b/english/aspose.cells/worksheet/unique_id/_index.md @@ -3,7 +3,7 @@ title: unique_id property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 870 +weight: 880 url: /aspose.cells/worksheet/unique_id/ is_root: false --- diff --git a/english/aspose.cells/worksheet/unprotect/_index.md b/english/aspose.cells/worksheet/unprotect/_index.md index 7d3ac7cc72..4205b451d7 100644 --- a/english/aspose.cells/worksheet/unprotect/_index.md +++ b/english/aspose.cells/worksheet/unprotect/_index.md @@ -3,7 +3,7 @@ title: unprotect method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 320 +weight: 330 url: /aspose.cells/worksheet/unprotect/ is_root: false --- diff --git a/english/aspose.cells/worksheet/validations/_index.md b/english/aspose.cells/worksheet/validations/_index.md index 5533643516..06819f901f 100644 --- a/english/aspose.cells/worksheet/validations/_index.md +++ b/english/aspose.cells/worksheet/validations/_index.md @@ -3,7 +3,7 @@ title: validations property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 880 +weight: 890 url: /aspose.cells/worksheet/validations/ is_root: false --- diff --git a/english/aspose.cells/worksheet/vertical_page_breaks/_index.md b/english/aspose.cells/worksheet/vertical_page_breaks/_index.md index 0af9c1d828..7a4ae90bbc 100644 --- a/english/aspose.cells/worksheet/vertical_page_breaks/_index.md +++ b/english/aspose.cells/worksheet/vertical_page_breaks/_index.md @@ -3,7 +3,7 @@ title: vertical_page_breaks property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 890 +weight: 900 url: /aspose.cells/worksheet/vertical_page_breaks/ is_root: false --- diff --git a/english/aspose.cells/worksheet/view_type/_index.md b/english/aspose.cells/worksheet/view_type/_index.md index c76334e54a..276c380ebf 100644 --- a/english/aspose.cells/worksheet/view_type/_index.md +++ b/english/aspose.cells/worksheet/view_type/_index.md @@ -3,7 +3,7 @@ title: view_type property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 900 +weight: 910 url: /aspose.cells/worksheet/view_type/ is_root: false --- diff --git a/english/aspose.cells/worksheet/visibility_type/_index.md b/english/aspose.cells/worksheet/visibility_type/_index.md index f27eeae502..ac86ae4dbe 100644 --- a/english/aspose.cells/worksheet/visibility_type/_index.md +++ b/english/aspose.cells/worksheet/visibility_type/_index.md @@ -3,7 +3,7 @@ title: visibility_type property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 910 +weight: 920 url: /aspose.cells/worksheet/visibility_type/ is_root: false --- diff --git a/english/aspose.cells/worksheet/workbook/_index.md b/english/aspose.cells/worksheet/workbook/_index.md index 1b808c1dfb..d1925651eb 100644 --- a/english/aspose.cells/worksheet/workbook/_index.md +++ b/english/aspose.cells/worksheet/workbook/_index.md @@ -3,7 +3,7 @@ title: workbook property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 920 +weight: 930 url: /aspose.cells/worksheet/workbook/ is_root: false --- diff --git a/english/aspose.cells/worksheet/xml_map_query/_index.md b/english/aspose.cells/worksheet/xml_map_query/_index.md index 57ea3e21a8..2d4a71adfe 100644 --- a/english/aspose.cells/worksheet/xml_map_query/_index.md +++ b/english/aspose.cells/worksheet/xml_map_query/_index.md @@ -3,7 +3,7 @@ title: xml_map_query method second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 330 +weight: 340 url: /aspose.cells/worksheet/xml_map_query/ is_root: false --- diff --git a/english/aspose.cells/worksheet/zoom/_index.md b/english/aspose.cells/worksheet/zoom/_index.md index 0ca3390a6f..05735dbb8f 100644 --- a/english/aspose.cells/worksheet/zoom/_index.md +++ b/english/aspose.cells/worksheet/zoom/_index.md @@ -3,7 +3,7 @@ title: zoom property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 930 +weight: 940 url: /aspose.cells/worksheet/zoom/ is_root: false --- diff --git a/english/aspose.cells/worksheetcollection/_index.md b/english/aspose.cells/worksheetcollection/_index.md index a0d8655132..bb544628c6 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: 1730 +weight: 1740 url: /aspose.cells/worksheetcollection/ is_root: false --- diff --git a/english/aspose.cells/writeprotection/_index.md b/english/aspose.cells/writeprotection/_index.md index ba9d82208d..3fe5d5ab6b 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: 1740 +weight: 1750 url: /aspose.cells/writeprotection/ is_root: false --- @@ -28,6 +28,7 @@ The WriteProtection type exposes the following members: | [author](/cells/python-net/aspose.cells/writeprotection/author) | Gets and sets the author. | | [recommend_read_only](/cells/python-net/aspose.cells/writeprotection/recommend_read_only) | Indicates if the Read Only Recommended option is selected. | | [is_write_protected](/cells/python-net/aspose.cells/writeprotection/is_write_protected) | Indicates whether this workbook is write protected. | +| [password](/cells/python-net/aspose.cells/writeprotection/password) | Sets the protected password to modify the file. | ### Methods diff --git a/english/aspose.cells/writeprotection/password/_index.md b/english/aspose.cells/writeprotection/password/_index.md new file mode 100644 index 0000000000..848a7e7e2c --- /dev/null +++ b/english/aspose.cells/writeprotection/password/_index.md @@ -0,0 +1,32 @@ +--- +title: password property +second_title: Aspose.Cells for Python via .NET API References +description: +type: docs +weight: 60 +url: /aspose.cells/writeprotection/password/ +is_root: false +--- + +## password property + + +Sets the protected password to modify the file. + +### Remarks + + + +### Definition: +```python +@property +def password(self): + ... +@password.setter +def password(self, value): + ... +``` + +### See Also +* module [`aspose.cells`](../../) +* class [`WriteProtection`](/cells/python-net/aspose.cells/writeprotection) diff --git a/english/aspose.cells/writeprotection/recommend_read_only/_index.md b/english/aspose.cells/writeprotection/recommend_read_only/_index.md index 96f8ea3b8f..f856b20201 100644 --- a/english/aspose.cells/writeprotection/recommend_read_only/_index.md +++ b/english/aspose.cells/writeprotection/recommend_read_only/_index.md @@ -3,7 +3,7 @@ title: recommend_read_only property second_title: Aspose.Cells for Python via .NET API References description: type: docs -weight: 60 +weight: 70 url: /aspose.cells/writeprotection/recommend_read_only/ is_root: false --- diff --git a/english/aspose.cells/xlsbsaveoptions/_index.md b/english/aspose.cells/xlsbsaveoptions/_index.md index 77fe530652..9510188fe9 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: 1760 +weight: 1770 url: /aspose.cells/xlsbsaveoptions/ is_root: false --- diff --git a/english/aspose.cells/xlssaveoptions/_index.md b/english/aspose.cells/xlssaveoptions/_index.md index a30ce0728b..230952c355 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: 1750 +weight: 1760 url: /aspose.cells/xlssaveoptions/ is_root: false --- diff --git a/english/aspose.cells/xmlcolumnproperty/_index.md b/english/aspose.cells/xmlcolumnproperty/_index.md index 892e8861c4..191bb422c3 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: 1770 +weight: 1780 url: /aspose.cells/xmlcolumnproperty/ is_root: false --- diff --git a/english/aspose.cells/xmldatabinding/_index.md b/english/aspose.cells/xmldatabinding/_index.md index f3f3a35eab..bc447e9106 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: 1780 +weight: 1790 url: /aspose.cells/xmldatabinding/ is_root: false --- diff --git a/english/aspose.cells/xmlloadoptions/_index.md b/english/aspose.cells/xmlloadoptions/_index.md index 0a90ce1ab0..cdd2fe41b4 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: 1790 +weight: 1800 url: /aspose.cells/xmlloadoptions/ is_root: false --- diff --git a/english/aspose.cells/xmlmap/_index.md b/english/aspose.cells/xmlmap/_index.md index 6f120138b1..8df3281794 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: 1800 +weight: 1810 url: /aspose.cells/xmlmap/ is_root: false --- diff --git a/english/aspose.cells/xmlmapcollection/_index.md b/english/aspose.cells/xmlmapcollection/_index.md index 8310fa06e4..dbf290c729 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: 1810 +weight: 1820 url: /aspose.cells/xmlmapcollection/ is_root: false --- diff --git a/english/aspose.cells/xmlsaveoptions/_index.md b/english/aspose.cells/xmlsaveoptions/_index.md index d09c10d7c9..039c543cea 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: 1820 +weight: 1830 url: /aspose.cells/xmlsaveoptions/ is_root: false --- diff --git a/english/aspose.cells/xpssaveoptions/_index.md b/english/aspose.cells/xpssaveoptions/_index.md index a2688d4936..1b17fa21ca 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: 1830 +weight: 1840 url: /aspose.cells/xpssaveoptions/ is_root: false ---