Skip to content

Commit 82d3721

Browse files
committed
Aspose.Cells for JavaScript via C++ v25.8 Api Reference
1 parent 3ed96cb commit 82d3721

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

english/javascript-cpp/cells/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ memorySetting : MemorySetting;
279279

280280
**Remarks**
281281

282-
Notable limits and recommended operations for some modes: <list type="table"> <listheader> <description>Mode</description> <description>Remarks</description> <description>Supported</description> </listheader> <item> <description>[MemorySetting.MemoryPreference](../memorysetting.memorypreference/)</description> <description>Cells data will be maintained in compact format to decrease the memory cost. On other hand, the compact data also may cause higher time cost, especially when updating the cells data, or accessing cells/rows randomly</description> <description>v8.0.0</description> </item> <item> <description>[MemorySetting.MemoryPreference](../memorysetting.memorypreference/)</description> <description> When this mode is used for any worksheet in one workbook, [Workbook.Dispose()](../workbook.dispose()/) should be called at the end of work to release all resources such as the temporary files. <br></br> Randomly accessing cells will give poor performance because data needs to be read/updated randomly and repeatedly(so the pointer in the file will be changed accordingly and IO operations will be required repeatedly). If possible, please always access the data sequentially(row by row). <br></br> When the data of one row/cell be changed, data of other cells/rows may also be influenced(such as the data be shifted/moved to other places to allocated enough spaces for the changed data). So every change of every data requires synchronization of other existing objects( such as Row or Cell object). So, to get better performance, please do not maintain multiple Rows/Cells at the same time. Processing them one by one will reduce the data synchronization for them so the performance can be improved a bit. </description> <description>v25.7</description> </item> </list
282+
Notable limits and recommended operations for some modes: <list type="table"> <listheader> <description>Mode</description> <description>Remarks</description> <description>Supported</description> </listheader> <item> <description>[MemorySetting.MemoryPreference](../memorysetting.memorypreference/)</description> <description>Cells data will be maintained in compact format to decrease the memory cost. On other hand, the compact data also may cause higher time cost, especially when updating the cells data, or accessing cells/rows randomly</description> <description>v8.0.0</description> </item> <item> <description>[MemorySetting.FileCache](../memorysetting.filecache/)</description> <description> When this mode is used for any worksheet in one workbook, [Workbook.Dispose()](../workbook.dispose()/) should be called at the end of work to release all resources such as the temporary files. <br></br> Randomly accessing cells will give poor performance because data needs to be read/updated randomly and repeatedly(so the pointer in the file will be changed accordingly and IO operations will be required repeatedly). If possible, please always access the data sequentially(row by row). <br></br> When the data of one row/cell be changed, data of other cells/rows may also be influenced(such as the data be shifted/moved to other places to allocated enough spaces for the changed data). So every change of every data requires synchronization of other existing objects( such as Row or Cell object). So, to get better performance, please do not maintain multiple Rows/Cells at the same time. Processing them one by one will reduce the data synchronization for them so the performance can be improved a bit. </description> <description>v25.7</description> </item> </list
283283

284284
### style {#style--}
285285

english/javascript-cpp/defaultstylesettings/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class DefaultStyleSettings;
1919

2020
| Property | Type | Description |
2121
| --- | --- | --- |
22-
| [builtInPreference](#builtInPreference--)| boolean | 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. |
22+
| [builtInPreference](#builtInPreference--)| boolean | Indicates whether property for number format is preferable 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. |
2323
| [fontName](#fontName--)| string | Gets/Sets the default font name for the workbook |
2424
| [fontSize](#fontSize--)| number | Gets/Sets the default standard font size for the workbook. |
2525
| [horizontalAlignment](#horizontalAlignment--)| TextAlignmentType | Gets/Sets the default value for horizontal alignment |
@@ -28,7 +28,7 @@ class DefaultStyleSettings;
2828

2929
### builtInPreference {#builtInPreference--}
3030

31-
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.
31+
Indicates whether property for number format is preferable 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.
3232

3333
```javascript
3434
builtInPreference : boolean;

english/javascript-cpp/memorysetting/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ Memory usage modes for cells data model.
1212
| Name | Value | Description |
1313
| --- | --- | --- |
1414
| Normal | `0` | Default mode for cells model. |
15-
| MemoryPreference | `1` | Memory performance preferrable. |
16-
| FileCache | `2` | Memory performance preferrable and using file instead of memory to maintain the cells data. |
15+
| MemoryPreference | `1` | Memory performance preferable. |
16+
| FileCache | `2` | Memory performance preferable and using file instead of memory to maintain the cells data. |
1717

0 commit comments

Comments
 (0)