Skip to content

Commit 02702cc

Browse files
committed
Aspose.Cells for Node.js via C++ v26.5 Api Reference
1 parent 04d6cd2 commit 02702cc

125 files changed

Lines changed: 2468 additions & 254 deletions

File tree

Some content is hidden

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

english/nodejs-cpp/_index.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ is_root: true
6060
| [CharacterBulletValue](./characterbulletvalue) | Represents the character bullet. |
6161
| [Chart](./chart) | Encapsulates the object that represents a single Excel chart. |
6262
| [ChartArea](./chartarea) | Encapsulates the object that represents the chart area in the worksheet. |
63-
| [ChartCalculateOptions](./chartcalculateoptions) | Represents the options for calculating the chart. |
63+
| [ChartCalculateOptions](./chartcalculateoptions) | Represents the options for calculating a chart. |
6464
| [ChartCollection](./chartcollection) | Encapsulates a collection of [Chart](../nodejs-cpp/chart/) objects. |
6565
| [ChartDataTable](./chartdatatable) | Represents a chart data table. |
6666
| [ChartDataValue](./chartdatavalue) | Encapsulates chart data value |
@@ -269,6 +269,7 @@ is_root: true
269269
| [OdsLoadOptions](./odsloadoptions) | Represents the options of loading ods file. |
270270
| [OdsPageBackground](./odspagebackground) | Represents the page background of ods. |
271271
| [OdsSaveOptions](./odssaveoptions) | Represents the options of saving ods file. |
272+
| [OfdSaveOptions](./ofdsaveoptions) | Represents the options for saving a OFD(Open Fixed-layout Document) file. |
272273
| [OleObject](./oleobject) | Represents an OleObject in a worksheet. |
273274
| [OleObjectCollection](./oleobjectcollection) | Represents embedded OLE objects. |
274275
| [OoxmlSaveOptions](./ooxmlsaveoptions) | Represents the options of saving office open xml file. |
@@ -649,6 +650,7 @@ is_root: true
649650
| [HtmlOfficeMathOutputType](./htmlofficemathoutputtype) | Represents how to export OfficeMath to HTML. |
650651
| [HtmlParagraphLayoutMode](./htmlparagraphlayoutmode) | Specifies how HTML <p> elements are rendered when loading HTML. |
651652
| [HtmlVersion](./htmlversion) | Indicates the version of HTML is used when saving to Html formats. |
653+
| [HyperlinkLoadMode](./hyperlinkloadmode) | Specifies how hyperlinks are handled when loading HTML. |
652654
| [IconSetType](./iconsettype) | Icon set type for conditional formatting. The threshold values for triggering the different icons within a set are configurable, and the icon order is reversible. |
653655
| [ImageBinarizationMethod](./imagebinarizationmethod) | Specifies the method used to binarize image. |
654656
| [ImageType](./imagetype) | Specifies the type (format) of an image. |

english/nodejs-cpp/builtindocumentpropertycollection/_index.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,11 @@ Provides access to [DocumentProperty](../documentproperty/) objects by their nam
128128
| [removeAt(number)](#removeAt-number-)| Removes a property at the specified index. |
129129
| [get(string)](#get-string-)| Returns a [DocumentProperty](../documentproperty/) object by the name of the property. |
130130

131+
## \[Symbol.iterator\](): Iterator\<DocumentProperty\>
132+
133+
Returns an iterator over the items in the collection. Enables use of `for...of`, spread syntax, and `Array.from()`.
134+
135+
131136

132137
### constructor(DocumentPropertyCollection) {#constructor-documentpropertycollection-}
133138

english/nodejs-cpp/cells/_index.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ url: /nodejs-cpp/cells/
1111
Encapsulates a collection of cell relevant objects, such as [Cell](../cell/), [Row](../row/), ...etc.
1212

1313
```javascript
14-
class Cells;
14+
class Cells implements Iterable<Cell>;
1515
```
1616

1717

@@ -262,6 +262,11 @@ cells.merge(5, 4, 2, 2);
262262
| [getCellDisplayStyle(number, number, BorderType)](#getCellDisplayStyle-number-number-bordertype-)| Get the display style of given cell. |
263263
| [isNull()](#isNull--)| Checks whether the implementation object is null. |
264264

265+
## \[Symbol.iterator\](): Iterator\<Cell\>
266+
267+
Returns an iterator over the items in the collection. Enables use of `for...of`, spread syntax, and `Array.from()`.
268+
269+
265270

266271
### odsCellFields {#odsCellFields--}
267272

english/nodejs-cpp/cellwatchcollection/_index.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ url: /nodejs-cpp/cellwatchcollection/
1111
Represents the collection of cells on this worksheet being watched in the 'watch window'.
1212

1313
```javascript
14-
class CellWatchCollection;
14+
class CellWatchCollection implements Iterable<CellWatch>;
1515
```
1616

1717

@@ -32,6 +32,11 @@ class CellWatchCollection;
3232
| [getCount()](#getCount--)| <b>@deprecated.</b> Please use the 'count' property instead. Gets the number of elements contained in. |
3333
| [isNull()](#isNull--)| Checks whether the implementation object is null. |
3434

35+
## \[Symbol.iterator\](): Iterator\<CellWatch\>
36+
37+
Returns an iterator over the items in the collection. Enables use of `for...of`, spread syntax, and `Array.from()`.
38+
39+
3540

3641
### constructor() {#constructor--}
3742

english/nodejs-cpp/chartcalculateoptions/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
22
title: ChartCalculateOptions
33
second_title: Aspose.Cells for Node.js via C++ API Reference
4-
description: Represents the options for calculating the chart.
4+
description: Represents the options for calculating a chart.
55
type: docs
66
url: /nodejs-cpp/chartcalculateoptions/
77
---
88

99
## ChartCalculateOptions class
1010

11-
Represents the options for calculating the chart.
11+
Represents the options for calculating a chart.
1212

1313
```javascript
1414
class ChartCalculateOptions;

english/nodejs-cpp/chartcollection/_index.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ url: /nodejs-cpp/chartcollection/
1111
Encapsulates a collection of [Chart](../chart/) objects.
1212

1313
```javascript
14-
class ChartCollection;
14+
class ChartCollection implements Iterable<Chart>;
1515
```
1616

1717

@@ -37,6 +37,11 @@ var charts = workbook.worksheets.get(0).charts;
3737
| [getCount()](#getCount--)| <b>@deprecated.</b> Please use the 'count' property instead. Gets the number of elements contained in. |
3838
| [isNull()](#isNull--)| Checks whether the implementation object is null. |
3939

40+
## \[Symbol.iterator\](): Iterator\<Chart\>
41+
42+
Returns an iterator over the items in the collection. Enables use of `for...of`, spread syntax, and `Array.from()`.
43+
44+
4045

4146
### get(number) {#get-number-}
4247

english/nodejs-cpp/chartpointcollection/_index.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ url: /nodejs-cpp/chartpointcollection/
1111
Represents a collection that contains all the points in one series.
1212

1313
```javascript
14-
class ChartPointCollection;
14+
class ChartPointCollection implements Iterable<ChartPoint>;
1515
```
1616

1717

@@ -74,6 +74,11 @@ workbook.save("output/ChartsChartPointCollection.xls");
7474
| [removeAt(number)](#removeAt-number-)| Removes point at the index of the series.. |
7575
| [isNull()](#isNull--)| Checks whether the implementation object is null. |
7676

77+
## \[Symbol.iterator\](): Iterator\<ChartPoint\>
78+
79+
Returns an iterator over the items in the collection. Enables use of `for...of`, spread syntax, and `Array.from()`.
80+
81+
7782

7883
### count {#count--}
7984

english/nodejs-cpp/charttextframe/_index.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class ChartTextFrame extends ChartFrame;
2525

2626
| Property | Type | Description |
2727
| --- | --- | --- |
28-
| [isDeleted](#isDeleted--)| boolean | Indicates whether this data labels are deleted. |
28+
| [isDeleted](#isDeleted--)| boolean | Indicates whether this data label is deleted. |
2929
| [textHorizontalAlignment](#textHorizontalAlignment--)| TextAlignmentType | Gets and sets the text horizontal alignment. |
3030
| [textVerticalAlignment](#textVerticalAlignment--)| TextAlignmentType | Gets or sets the text vertical alignment of text. |
3131
| [rotationAngle](#rotationAngle--)| number | Represents the text rotation angle. |
@@ -51,8 +51,8 @@ class ChartTextFrame extends ChartFrame;
5151

5252
| Method | Description |
5353
| --- | --- |
54-
| [isDeleted()](#isDeleted--)| <b>@deprecated.</b> Please use the 'isDeleted' property instead. Indicates whether this data labels are deleted. |
55-
| [setIsDeleted(boolean)](#setIsDeleted-boolean-)| <b>@deprecated.</b> Please use the 'isDeleted' property instead. Indicates whether this data labels are deleted. |
54+
| [isDeleted()](#isDeleted--)| <b>@deprecated.</b> Please use the 'isDeleted' property instead. Indicates whether this data label is deleted. |
55+
| [setIsDeleted(boolean)](#setIsDeleted-boolean-)| <b>@deprecated.</b> Please use the 'isDeleted' property instead. Indicates whether this data label is deleted. |
5656
| [getTextHorizontalAlignment()](#getTextHorizontalAlignment--)| <b>@deprecated.</b> Please use the 'textHorizontalAlignment' property instead. Gets and sets the text horizontal alignment. |
5757
| [setTextHorizontalAlignment(TextAlignmentType)](#setTextHorizontalAlignment-textalignmenttype-)| <b>@deprecated.</b> Please use the 'textHorizontalAlignment' property instead. Gets and sets the text horizontal alignment. |
5858
| [getTextVerticalAlignment()](#getTextVerticalAlignment--)| <b>@deprecated.</b> Please use the 'textVerticalAlignment' property instead. Gets or sets the text vertical alignment of text. |
@@ -144,7 +144,7 @@ constructor(obj: ChartFrame);
144144

145145
### isDeleted {#isDeleted--}
146146

147-
Indicates whether this data labels are deleted.
147+
Indicates whether this data label is deleted.
148148

149149
```javascript
150150
isDeleted : boolean;
@@ -369,7 +369,7 @@ defaultHeightRatioToChart : number;
369369

370370
### isDeleted() {#isDeleted--}
371371

372-
<b>@deprecated.</b> Please use the 'isDeleted' property instead. Indicates whether this data labels are deleted.
372+
<b>@deprecated.</b> Please use the 'isDeleted' property instead. Indicates whether this data label is deleted.
373373

374374
```javascript
375375
isDeleted() : boolean;
@@ -378,7 +378,7 @@ isDeleted() : boolean;
378378

379379
### setIsDeleted(boolean) {#setIsDeleted-boolean-}
380380

381-
<b>@deprecated.</b> Please use the 'isDeleted' property instead. Indicates whether this data labels are deleted.
381+
<b>@deprecated.</b> Please use the 'isDeleted' property instead. Indicates whether this data label is deleted.
382382

383383
```javascript
384384
setIsDeleted(value: boolean) : void;

english/nodejs-cpp/checkboxcollection/_index.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ url: /nodejs-cpp/checkboxcollection/
1111
Represents a collection of [CheckBox](../checkbox/) objects in a worksheet.
1212

1313
```javascript
14-
class CheckBoxCollection;
14+
class CheckBoxCollection implements Iterable<CheckBox>;
1515
```
1616

1717

@@ -33,6 +33,11 @@ checkBox.text = "Check Box 1";
3333
| [getCount()](#getCount--)| <b>@deprecated.</b> Please use the 'count' property instead. Gets the number of elements contained in. |
3434
| [isNull()](#isNull--)| Checks whether the implementation object is null. |
3535

36+
## \[Symbol.iterator\](): Iterator\<CheckBox\>
37+
38+
Returns an iterator over the items in the collection. Enables use of `for...of`, spread syntax, and `Array.from()`.
39+
40+
3641

3742
### get(number) {#get-number-}
3843

english/nodejs-cpp/columncollection/_index.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ url: /nodejs-cpp/columncollection/
1111
Collection of the [Column](../column/) objects that represent the individual column(setting)s in a worksheet. The Column object only represents the settings such as column width, styles, .etc. for the whole column, has nothing to do with the fact that there are non-empty cells(data) or not in corresponding column. And the "Count" of this collection only represents the count Column objects that have been instantiated in this collection, has nothing to do with the fact that there are non-empty cells(data) or not in the worksheet.
1212

1313
```javascript
14-
class ColumnCollection;
14+
class ColumnCollection implements Iterable<Column>;
1515
```
1616

1717

@@ -60,6 +60,11 @@ workbook.save("output/ColumnCollection.xls");
6060
| [getCount()](#getCount--)| <b>@deprecated.</b> Please use the 'count' property instead. Gets the number of elements contained in. |
6161
| [isNull()](#isNull--)| Checks whether the implementation object is null. |
6262

63+
## \[Symbol.iterator\](): Iterator\<Column\>
64+
65+
Returns an iterator over the items in the collection. Enables use of `for...of`, spread syntax, and `Array.from()`.
66+
67+
6368

6469
### get(number) {#get-number-}
6570

0 commit comments

Comments
 (0)