Skip to content

Commit 63d6bea

Browse files
release Aspose.Cells for .NET 25.11
1 parent 10cf81e commit 63d6bea

File tree

138 files changed

+901
-420
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

138 files changed

+901
-420
lines changed

english/net/aspose.cells.drawing.equations/delimiterequationnode/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public class DelimiterEquationNode : EquationNode
2323
| [EquationType](../../aspose.cells.drawing.equations/equationnode/equationtype/) { get; } | Get the equation type of the current node(Inherited from [`EquationNode`](../equationnode/).) |
2424
| [Font](../../aspose.cells/fontsetting/font/) { get; } | Returns the font of this object.(Inherited from [`FontSetting`](../../aspose.cells/fontsetting/).) |
2525
| [Length](../../aspose.cells/fontsetting/length/) { get; } | Gets the length of the characters.(Inherited from [`FontSetting`](../../aspose.cells/fontsetting/).) |
26-
| [NaryGrow](../../aspose.cells.drawing.equations/delimiterequationnode/narygrow/) { getset; } | |
26+
| [NaryGrow](../../aspose.cells.drawing.equations/delimiterequationnode/narygrow/) { getset; } | Specifies whether the delimiter should automatically expand and contract with the height of the formula. |
2727
| [ParentNode](../../aspose.cells.drawing.equations/equationnode/parentnode/) { getset; } | Specifies the parent node of the current node(Inherited from [`EquationNode`](../equationnode/).) |
2828
| [SeparatorChar](../../aspose.cells.drawing.equations/delimiterequationnode/separatorchar/) { getset; } | Delimiter separator character. |
2929
| [StartIndex](../../aspose.cells/fontsetting/startindex/) { get; } | Gets the start index of the characters.(Inherited from [`FontSetting`](../../aspose.cells/fontsetting/).) |

english/net/aspose.cells.drawing.equations/delimiterequationnode/narygrow/_index.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,22 @@
11
---
22
title: DelimiterEquationNode.NaryGrow
33
second_title: Aspose.Cells for .NET API Reference
4-
description: DelimiterEquationNode property.
4+
description: DelimiterEquationNode property. Specifies whether the delimiter should automatically expand and contract with the height of the formula
55
type: docs
66
url: /net/aspose.cells.drawing.equations/delimiterequationnode/narygrow/
77
---
88
## DelimiterEquationNode.NaryGrow property
99

10+
Specifies whether the delimiter should automatically expand and contract with the height of the formula.
11+
1012
```csharp
1113
public bool NaryGrow { get; set; }
1214
```
1315

16+
### Remarks
17+
18+
This property specifies the growth property of the delimiter at the document level. When off, the delimiter will not grow to match the size of its component height. When enabled, the delimiter grows vertically to match its component height.
19+
1420
### Examples
1521

1622
```csharp

english/net/aspose.cells.gridjs/config/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ public class Config
2323

2424
| Name | Description |
2525
| --- | --- |
26+
| static [AutoFitRowsHeightOnLoad](../../aspose.cells.gridjs/config/autofitrowsheightonload/) { get; set; } | Indicates whether to autofit rows height when loading the file,the default value is false. |
2627
| static [AutoOptimizeForLargeCells](../../aspose.cells.gridjs/config/autooptimizeforlargecells/) { getset; } | Gets/Sets whether to automatically optimize the load performance for worksheet with large cells. it will ignore some style /borders to reduce the load time. the default value is true. |
2728
| static [BaseRouteName](../../aspose.cells.gridjs/config/baseroutename/) { getset; } | Gets/Sets the base route name for GridJs controller URL. the default is "/GridJs2". |
2829
| static [CustomPdfSaveOptions](../../aspose.cells.gridjs/config/custompdfsaveoptions/) { getset; } | Gets/Sets the custom PdfSaveOptions for PDF export. If set, this will be used instead of the default options. the default value is null. |
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
title: Config.AutoFitRowsHeightOnLoad
3+
second_title: Aspose.Cells for .NET API Reference
4+
description: Config property. Indicates whether to autofit rows height when loading the filethe default value is false
5+
type: docs
6+
url: /net/aspose.cells.gridjs/config/autofitrowsheightonload/
7+
---
8+
## Config.AutoFitRowsHeightOnLoad property
9+
10+
Indicates whether to autofit rows height when loading the file,the default value is false.
11+
12+
```csharp
13+
public static bool AutoFitRowsHeightOnLoad { get; set; }
14+
```
15+
16+
### See Also
17+
18+
* class [Config](../)
19+
* namespace [Aspose.Cells.GridJs](../../../aspose.cells.gridjs/)
20+
* assembly [Aspose.Cells.GridJs](../../../)
21+
22+

english/net/aspose.cells.gridjs/gridjsoptions/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ public class GridJsOptions
2323

2424
| Name | Description |
2525
| --- | --- |
26+
| [AutoFitRowsHeightOnLoad](../../aspose.cells.gridjs/gridjsoptions/autofitrowsheightonload/) { get; set; } | Indicates whether to autofit rows height when loading the file,the default value is false. |
2627
| [AutoOptimizeForLargeCells](../../aspose.cells.gridjs/gridjsoptions/autooptimizeforlargecells/) { getset; } | Gets/Sets whether to automatically optimize the load performance for worksheet with large cells. it will ignore some style /borders to reduce the load time. the default value is true. |
2728
| [BaseRouteName](../../aspose.cells.gridjs/gridjsoptions/baseroutename/) { getset; } | Gets/Sets the route URL base name for GridJs controller.the default is GridJs2 |
2829
| [CustomPdfSaveOptions](../../aspose.cells.gridjs/gridjsoptions/custompdfsaveoptions/) { getset; } | Gets/Sets the custom PdfSaveOptions for PDF export. If set, this will be used instead of the default options. the default value is null. |
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
title: GridJsOptions.AutoFitRowsHeightOnLoad
3+
second_title: Aspose.Cells for .NET API Reference
4+
description: GridJsOptions property. Indicates whether to autofit rows height when loading the filethe default value is false
5+
type: docs
6+
url: /net/aspose.cells.gridjs/gridjsoptions/autofitrowsheightonload/
7+
---
8+
## GridJsOptions.AutoFitRowsHeightOnLoad property
9+
10+
Indicates whether to autofit rows height when loading the file,the default value is false.
11+
12+
```csharp
13+
public bool AutoFitRowsHeightOnLoad { get; set; }
14+
```
15+
16+
### See Also
17+
18+
* class [GridJsOptions](../)
19+
* namespace [Aspose.Cells.GridJs](../../../aspose.cells.gridjs/)
20+
* assembly [Aspose.Cells.GridJs](../../../)
21+
22+

english/net/aspose.cells.gridjs/gridjsservice/_index.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@ public class GridJsService : IGridJsService
1919
| --- | --- |
2020
| [GridJsService](gridjsservice/)(IOptions<GridJsOptions>) | The default constructor for GridJsService |
2121

22+
## Properties
23+
24+
| Name | Description |
25+
| --- | --- |
26+
| [Settings](../../aspose.cells.gridjs/gridjsservice/settings/) { get; set; } | Represents the workbook settings. |
27+
2228
## Methods
2329

2430
| Name | Description |
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
title: GridJsService.Settings
3+
second_title: Aspose.Cells for .NET API Reference
4+
description: GridJsService property. Represents the workbook settings
5+
type: docs
6+
url: /net/aspose.cells.gridjs/gridjsservice/settings/
7+
---
8+
## GridJsService.Settings property
9+
10+
Represents the workbook settings.
11+
12+
```csharp
13+
public GridWorkbookSettings Settings { get; set; }
14+
```
15+
16+
### See Also
17+
18+
* class [GridWorkbookSettings](../../gridworkbooksettings/)
19+
* class [GridJsService](../)
20+
* namespace [Aspose.Cells.GridJs](../../../aspose.cells.gridjs/)
21+
* assembly [Aspose.Cells.GridJs](../../../)
22+
23+

english/net/aspose.cells.gridjs/gridloadformat/_index.md

Lines changed: 20 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,20 +18,30 @@ public enum GridLoadFormat
1818
| Name | Value | Description |
1919
| --- | --- | --- |
2020
| Auto | `0` | Represents recognizing the format automatically. |
21-
| Csv | `1` | Represents Comma-Separated Values(CSV) text file. |
21+
| Csv | `1` | Comma-Separated Values(CSV) text file. |
2222
| Xlsx | `6` | Represents Office Open XML spreadsheetML workbook or template, with or without macros. |
23-
| Tsv | `11` | Represents TSV(tab-separated values file) file. |
24-
| TabDelimited | `11` | Represents tab delimited text file, same with Tsv. |
25-
| Html | `12` | Represents html file. |
26-
| MHtml | `13` | Represents mhtml file. |
27-
| Ods | `14` | Represents Open Document Sheet(ODS) file. |
28-
| Excel97To2003 | `5` | Represents Excel97-2003 xls file. |
29-
| SpreadsheetML | `15` | Represents Excel 2003 xml file. |
30-
| Xlsb | `16` | Represents xlsb file. |
31-
| Numbers | `56` | Represents numbers file. |
23+
| Tsv | `11` | Tab-Separated Values(TSV) text file. |
24+
| TabDelimited | `11` | Represents a tab delimited text file, same with Tsv. |
25+
| Html | `12` | Represents a html file. |
26+
| MHtml | `13` | Represents a mhtml file. |
27+
| Ods | `14` | Open Document Sheet(ODS) file. |
28+
| Excel97To2003 | `5` | Represents an Excel97-2003 xls file. |
29+
| SpreadsheetML | `15` | Represents an Excel 2003 xml file. |
30+
| Xlsb | `16` | Represents an xlsb file. |
31+
| Ots | `31` | Open Document Template Sheet(OTS) file. |
32+
| Numbers | `56` | Represents a numbers file. |
3233
| Fods | `59` | Represents OpenDocument Flat XML Spreadsheet (.fods) file format. |
3334
| Sxc | `60` | Represents StarOffice Calc Spreadsheet (.sxc) file format. |
35+
| Xml | `51` | Represents a simple xml file. |
36+
| Epub | `52` | Reprents an EPUB file. |
37+
| Azw3 | `53` | Represents an AZW3 file. |
38+
| Chm | `54` | Represents a CHM file. |
39+
| Markdown | `55` | Represents a Markdown file. |
3440
| Unknown | `255` | Represents unrecognized format, cannot be loaded. |
41+
| Image | `254` | Image |
42+
| Json | `513` | Json |
43+
| Dif | `30` | Data Interchange Format. |
44+
| Dbf | `515` | Xbase Data file |
3545

3646
### See Also
3747

english/net/aspose.cells.gridjs/gridworkbooksettings/_index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ public class GridWorkbookSettings
2424
| Name | Description |
2525
| --- | --- |
2626
| [Author](../../aspose.cells.gridjs/gridworkbooksettings/author/) { get; set; } | Gets/sets the author of the file. |
27-
| [CheckCustomNumberFormat](../../aspose.cells.gridjs/gridworkbooksettings/checkcustomnumberformat/) { getset; } | Indicates whether checking custom number format when setting Style.Custom. |
27+
| [CheckCustomNumberFormat](../../aspose.cells.gridjs/gridworkbooksettings/checkcustomnumberformat/) { getset; } | Indicates whether checking custom number format when setting Style.Custom, default is false. |
28+
| [CheckExcelRestriction](../../aspose.cells.gridjs/gridworkbooksettings/checkexcelrestriction/) { getset; } | Whether check restriction of excel file when user modify cells related objects. For example, excel does not allow inputting string value longer than 32K. When you input a value longer than 32K such as by Cell.PutValue(string), if this property is true, you will get an Exception. If this property is false, we will accept your input string value as the cell's value so that later you can output the complete string value for other file formats such as CSV. However, if you have set such kind of value that is invalid for excel file format, you should not save the workbook as excel file format later. Otherwise there may be unexpected error for the generated excel file. default is false. |
2829
| [CreateCalcChain](../../aspose.cells.gridjs/gridworkbooksettings/createcalcchain/) { getset; } | Indicates whether create calculated formulas chain. Default is false. |
2930
| [Date1904](../../aspose.cells.gridjs/gridworkbooksettings/date1904/) { getset; } | Gets or sets a value which represents if the workbook uses the 1904 date system. |
3031
| [EnableMacros](../../aspose.cells.gridjs/gridworkbooksettings/enablemacros/) { getset; } | Enable macros; Now it only works when copying a worksheet to other worksheet in a workbook. |

0 commit comments

Comments
 (0)