Skip to content

Commit e78da0a

Browse files
committed
Aspose.Cells for Node.js via C++ v25.10 Api Reference
1 parent 7070a3a commit e78da0a

File tree

14 files changed

+272
-132
lines changed

14 files changed

+272
-132
lines changed

english/nodejs-cpp/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -762,6 +762,7 @@ is_root: true
762762
| [ShiftType](./shifttype) | Represent the shift options when deleting a range of cells. |
763763
| [ShowDropButtonType](./showdropbuttontype) | Specifies when to show the drop button |
764764
| [SignatureType](./signaturetype) | Specifies the signature type. |
765+
| [SignificantDigitsType](./significantdigitstype) | Represents the type of significant digits for outputing numeric values. |
765766
| [SlicerCacheCrossFilterType](./slicercachecrossfiltertype) | Represent the type of SlicerCacheCrossFilterType |
766767
| [SlicerCacheItemSortType](./slicercacheitemsorttype) | Specify the sort type of SlicerCacheItem |
767768
| [SlicerStyleType](./slicerstyletype) | Specify the style of slicer view |

english/nodejs-cpp/abstracttextloadoptions/_index.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ class AbstractTextLoadOptions extends LoadOptions;
2727
| --- | --- | --- |
2828
| [encoding](#encoding--)| EncodingType | Gets and sets the default encoding. Only applies for csv file. |
2929
| [loadStyleStrategy](#loadStyleStrategy--)| TxtLoadStyleStrategy | Indicates the strategy to apply style for parsed values when converting string value to number or datetime. |
30-
| [convertNumericData](#convertNumericData--)| boolean | Gets or sets a value that indicates whether the string in text file is converted to numeric data. |
31-
| [convertDateTimeData](#convertDateTimeData--)| boolean | Gets or sets a value that indicates whether the string in text file is converted to date data. |
30+
| [convertNumericData](#convertNumericData--)| boolean | Gets or sets a value that indicates whether the string in text file is converted to numeric data. Default value is true. |
31+
| [convertDateTimeData](#convertDateTimeData--)| boolean | Gets or sets a value that indicates whether the string in text file is converted to date data. Default value is true. |
3232
| [keepPrecision](#keepPrecision--)| boolean | Indicates whether not parsing a string value if the length is 15. |
3333
| [loadFormat](#loadFormat--)| LoadFormat | Readonly. Gets the load format. |
3434
| [password](#password--)| string | Gets and set the password of the workbook. |
@@ -60,10 +60,10 @@ class AbstractTextLoadOptions extends LoadOptions;
6060
| [setEncoding(EncodingType)](#setEncoding-encodingtype-)| <b>@deprecated.</b> Please use the 'encoding' property instead. Gets and sets the default encoding. Only applies for csv file. |
6161
| [getLoadStyleStrategy()](#getLoadStyleStrategy--)| <b>@deprecated.</b> Please use the 'loadStyleStrategy' property instead. Indicates the strategy to apply style for parsed values when converting string value to number or datetime. |
6262
| [setLoadStyleStrategy(TxtLoadStyleStrategy)](#setLoadStyleStrategy-txtloadstylestrategy-)| <b>@deprecated.</b> Please use the 'loadStyleStrategy' property instead. Indicates the strategy to apply style for parsed values when converting string value to number or datetime. |
63-
| [getConvertNumericData()](#getConvertNumericData--)| <b>@deprecated.</b> Please use the 'convertNumericData' property instead. Gets or sets a value that indicates whether the string in text file is converted to numeric data. |
64-
| [setConvertNumericData(boolean)](#setConvertNumericData-boolean-)| <b>@deprecated.</b> Please use the 'convertNumericData' property instead. Gets or sets a value that indicates whether the string in text file is converted to numeric data. |
65-
| [getConvertDateTimeData()](#getConvertDateTimeData--)| <b>@deprecated.</b> Please use the 'convertDateTimeData' property instead. Gets or sets a value that indicates whether the string in text file is converted to date data. |
66-
| [setConvertDateTimeData(boolean)](#setConvertDateTimeData-boolean-)| <b>@deprecated.</b> Please use the 'convertDateTimeData' property instead. Gets or sets a value that indicates whether the string in text file is converted to date data. |
63+
| [getConvertNumericData()](#getConvertNumericData--)| <b>@deprecated.</b> Please use the 'convertNumericData' property instead. Gets or sets a value that indicates whether the string in text file is converted to numeric data. Default value is true. |
64+
| [setConvertNumericData(boolean)](#setConvertNumericData-boolean-)| <b>@deprecated.</b> Please use the 'convertNumericData' property instead. Gets or sets a value that indicates whether the string in text file is converted to numeric data. Default value is true. |
65+
| [getConvertDateTimeData()](#getConvertDateTimeData--)| <b>@deprecated.</b> Please use the 'convertDateTimeData' property instead. Gets or sets a value that indicates whether the string in text file is converted to date data. Default value is true. |
66+
| [setConvertDateTimeData(boolean)](#setConvertDateTimeData-boolean-)| <b>@deprecated.</b> Please use the 'convertDateTimeData' property instead. Gets or sets a value that indicates whether the string in text file is converted to date data. Default value is true. |
6767
| [getKeepPrecision()](#getKeepPrecision--)| <b>@deprecated.</b> Please use the 'keepPrecision' property instead. Indicates whether not parsing a string value if the length is 15. |
6868
| [setKeepPrecision(boolean)](#setKeepPrecision-boolean-)| <b>@deprecated.</b> Please use the 'keepPrecision' property instead. Indicates whether not parsing a string value if the length is 15. |
6969
| [isNull()](#isNull--)| Checks whether the implementation object is null. |
@@ -143,7 +143,7 @@ loadStyleStrategy : TxtLoadStyleStrategy;
143143

144144
### convertNumericData {#convertNumericData--}
145145

146-
Gets or sets a value that indicates whether the string in text file is converted to numeric data.
146+
Gets or sets a value that indicates whether the string in text file is converted to numeric data. Default value is true.
147147

148148
```javascript
149149
convertNumericData : boolean;
@@ -152,7 +152,7 @@ convertNumericData : boolean;
152152

153153
### convertDateTimeData {#convertDateTimeData--}
154154

155-
Gets or sets a value that indicates whether the string in text file is converted to date data.
155+
Gets or sets a value that indicates whether the string in text file is converted to date data. Default value is true.
156156

157157
```javascript
158158
convertDateTimeData : boolean;
@@ -451,7 +451,7 @@ setLoadStyleStrategy(value: TxtLoadStyleStrategy) : void;
451451
452452
### getConvertNumericData() {#getConvertNumericData--}
453453
454-
<b>@deprecated.</b> Please use the 'convertNumericData' property instead. Gets or sets a value that indicates whether the string in text file is converted to numeric data.
454+
<b>@deprecated.</b> Please use the 'convertNumericData' property instead. Gets or sets a value that indicates whether the string in text file is converted to numeric data. Default value is true.
455455
456456
```javascript
457457
getConvertNumericData() : boolean;
@@ -460,7 +460,7 @@ getConvertNumericData() : boolean;
460460
461461
### setConvertNumericData(boolean) {#setConvertNumericData-boolean-}
462462
463-
<b>@deprecated.</b> Please use the 'convertNumericData' property instead. Gets or sets a value that indicates whether the string in text file is converted to numeric data.
463+
<b>@deprecated.</b> Please use the 'convertNumericData' property instead. Gets or sets a value that indicates whether the string in text file is converted to numeric data. Default value is true.
464464
465465
```javascript
466466
setConvertNumericData(value: boolean) : void;
@@ -473,7 +473,7 @@ setConvertNumericData(value: boolean) : void;
473473
474474
### getConvertDateTimeData() {#getConvertDateTimeData--}
475475
476-
<b>@deprecated.</b> Please use the 'convertDateTimeData' property instead. Gets or sets a value that indicates whether the string in text file is converted to date data.
476+
<b>@deprecated.</b> Please use the 'convertDateTimeData' property instead. Gets or sets a value that indicates whether the string in text file is converted to date data. Default value is true.
477477
478478
```javascript
479479
getConvertDateTimeData() : boolean;
@@ -482,7 +482,7 @@ getConvertDateTimeData() : boolean;
482482
483483
### setConvertDateTimeData(boolean) {#setConvertDateTimeData-boolean-}
484484
485-
<b>@deprecated.</b> Please use the 'convertDateTimeData' property instead. Gets or sets a value that indicates whether the string in text file is converted to date data.
485+
<b>@deprecated.</b> Please use the 'convertDateTimeData' property instead. Gets or sets a value that indicates whether the string in text file is converted to date data. Default value is true.
486486
487487
```javascript
488488
setConvertDateTimeData(value: boolean) : void;

english/nodejs-cpp/autoshapetype/_index.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -51,18 +51,18 @@ Represents all built-in auto shape type.
5151
| CurvedConnector | `38` | |
5252
| CurvedConnector4 | `39` | |
5353
| CurvedConnector5 | `40` | |
54-
| LineCalloutNoBorder2 | `41` | |
55-
| LineCalloutNoBorder3 | `42` | |
56-
| LineCalloutNoBorder4 | `43` | |
57-
| LineCalloutWithAccentBar2 | `44` | |
58-
| LineCalloutWithAccentBar3 | `45` | |
59-
| LineCalloutWithAccentBar4 | `46` | |
60-
| LineCalloutWithBorder2 | `47` | |
61-
| LineCalloutWithBorder3 | `48` | |
62-
| LineCalloutWithBorder4 | `49` | |
63-
| LineCalloutWithBorderAndAccentBar2 | `50` | |
64-
| LineCalloutWithBorderAndAccentBar3 | `51` | |
65-
| LineCalloutWithBorderAndAccentBar4 | `52` | |
54+
| LineCalloutNoBorder2 | `41` | Specifies the "Line Callout 2(No Border)" type of the Ms Excel 97-2003 version or the "Callout: Line with No Border" type of the Ms Excel 2007 version. |
55+
| LineCalloutNoBorder3 | `42` | Specifies the "Line Callout 3(No Border)" type of the Ms Excel 97-2003 version or the "Callout: Bent Line with No Border" type of the Ms Excel 2007 version. |
56+
| LineCalloutNoBorder4 | `43` | Specifies the "Line Callout 4(No Border)" type of the Ms Excel 97-2003 version or the "Callout: Double Bent Line with No Border" type of the Ms Excel 2007 version. |
57+
| LineCalloutWithAccentBar2 | `44` | Specifies the "Line Callout 2(Accent Bar)" type of the Ms Excel 97-2003 version or the "Callout: Line with Accent Bar" type of the Ms Excel 2007 version. |
58+
| LineCalloutWithAccentBar3 | `45` | Specifies the "Line Callout 3(Accent Bar)" type of the Ms Excel 97-2003 version or the "Callout: Bent Line with Accent Bar" type of the Ms Excel 2007 version. |
59+
| LineCalloutWithAccentBar4 | `46` | Specifies the "Line Callout 4(Accent Bar)" type of the Ms Excel 97-2003 version or the "Callout: Double Bent Line with Accent Bar" type of the Ms Excel 2007 version. |
60+
| LineCalloutWithBorder2 | `47` | Specifies the "Line Callout 2" type of the Ms Excel 97-2003 version or the "Callout: Line" type of the Ms Excel 2007 version. |
61+
| LineCalloutWithBorder3 | `48` | Specifies the "Line Callout 3" type of the Ms Excel 97-2003 version or the "Callout: Bent Line" type of the Ms Excel 2007 version. |
62+
| LineCalloutWithBorder4 | `49` | Specifies the "Line Callout 4" type of the Ms Excel 97-2003 version or the "Callout: Double Bent Line" type of the Ms Excel 2007 version. |
63+
| LineCalloutWithBorderAndAccentBar2 | `50` | Specifies the "Line Callout 2(Border and Accent Bar)" type of the Ms Excel 97-2003 version or the "Callout: Line with Border and Accent Bar" type of the Ms Excel 2007 version. |
64+
| LineCalloutWithBorderAndAccentBar3 | `51` | Specifies the "Line Callout 3(Border and Accent Bar)" type of the Ms Excel 97-2003 version or the "Callout: Bent Line with Border and Accent Bar" type of the Ms Excel 2007 version. |
65+
| LineCalloutWithBorderAndAccentBar4 | `52` | Specifies the "Line Callout 4(Border and Accent Bar)" type of the Ms Excel 97-2003 version or the "Callout: Double Bent Line with Border and Accent Bar" type of the Ms Excel 2007 version. |
6666
| DownRibbon | `53` | |
6767
| UpRibbon | `54` | |
6868
| Chevron | `55` | |
@@ -188,10 +188,10 @@ Represents all built-in auto shape type.
188188
| TextCanDown | `175` | A text shape that is curved downwards as if being read on the side of a can. |
189189
| FlowChartAlternateProcess | `176` | |
190190
| FlowChartOffpageConnector | `177` | |
191-
| LineCalloutNoBorder1 | `178` | |
192-
| LineCalloutWithAccentBar1 | `179` | |
193-
| LineCalloutWithBorder1 | `180` | |
194-
| LineCalloutWithBorderAndAccentBar1 | `181` | |
191+
| LineCalloutNoBorder1 | `178` | Specifies the "Line Callout 1(No Border)" type of the Ms Excel 97-2003 version. |
192+
| LineCalloutWithAccentBar1 | `179` | Specifies the "Line Callout 1(Accent Bar)" type of the Ms Excel 97-2003 version. |
193+
| LineCalloutWithBorder1 | `180` | Specifies the "Line Callout 1" type of the Ms Excel 97-2003 version. |
194+
| LineCalloutWithBorderAndAccentBar1 | `181` | Specifies the "Line Callout 1(Border and Accent Bar)" type of the Ms Excel 97-2003 version. |
195195
| LeftRightUpArrow | `182` | |
196196
| Sun | `183` | |
197197
| Moon | `184` | |

0 commit comments

Comments
 (0)