You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: english/javascript-cpp/_index.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -60,7 +60,7 @@ is_root: true
60
60
|[CharacterBulletValue](./characterbulletvalue)| Represents the character bullet. |
61
61
|[Chart](./chart)| Encapsulates the object that represents a single Excel chart. |
62
62
|[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. |
64
64
|[ChartCollection](./chartcollection)| Encapsulates a collection of [Chart](../javascript-cpp/chart/) objects. |
65
65
|[ChartDataTable](./chartdatatable)| Represents a chart data table. |
66
66
|[ChartDataValue](./chartdatavalue)| Encapsulates chart data value |
@@ -269,6 +269,7 @@ is_root: true
269
269
|[OdsLoadOptions](./odsloadoptions)| Represents the options of loading ods file. |
270
270
|[OdsPageBackground](./odspagebackground)| Represents the page background of ods. |
271
271
|[OdsSaveOptions](./odssaveoptions)| Represents the options of saving ods file. |
272
+
|[OfdSaveOptions](./ofdsaveoptions)| Represents the options for saving a OFD(Open Fixed-layout Document) file. |
272
273
|[OleObject](./oleobject)| Represents an OleObject in a worksheet. |
273
274
|[OleObjectCollection](./oleobjectcollection)| Represents embedded OLE objects. |
274
275
|[OoxmlSaveOptions](./ooxmlsaveoptions)| Represents the options of saving office open xml file. |
@@ -650,6 +651,7 @@ is_root: true
650
651
|[HtmlOfficeMathOutputType](./htmlofficemathoutputtype)| Represents how to export OfficeMath to HTML. |
651
652
|[HtmlParagraphLayoutMode](./htmlparagraphlayoutmode)| Specifies how HTML <p> elements are rendered when loading HTML. |
652
653
|[HtmlVersion](./htmlversion)| Indicates the version of HTML is used when saving to Html formats. |
654
+
|[HyperlinkLoadMode](./hyperlinkloadmode)| Specifies how hyperlinks are handled when loading HTML. |
653
655
|[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. |
654
656
|[ImageBinarizationMethod](./imagebinarizationmethod)| Specifies the method used to binarize image. |
655
657
|[ImageType](./imagetype)| Specifies the type (format) of an image. |
Copy file name to clipboardExpand all lines: english/javascript-cpp/datalabels/_index.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -96,7 +96,7 @@ for (var i = 0; i < chart.nSeries.count; i++) {
96
96
|[defaultYRatioToChart](#defaultYRatioToChart--)| number | Readonly. Represents y of default position in units of Fraction of the chart area. |
97
97
|[defaultWidthRatioToChart](#defaultWidthRatioToChart--)| number | Readonly. Represents width of default position in units of Fraction of the chart area. |
98
98
|[defaultHeightRatioToChart](#defaultHeightRatioToChart--)| number | Readonly. Represents height of default position in units of Fraction of the chart area. |
99
-
|[isDeleted](#isDeleted--)| boolean | Indicates whether this data labels are deleted. |
99
+
|[isDeleted](#isDeleted--)| boolean | Indicates whether this data label is deleted. |
100
100
|[textHorizontalAlignment](#textHorizontalAlignment--)| TextAlignmentType | Gets and sets the text horizontal alignment. |
101
101
|[textVerticalAlignment](#textVerticalAlignment--)| TextAlignmentType | Gets or sets the text vertical alignment of text. |
102
102
|[rotationAngle](#rotationAngle--)| number | Represents the text rotation angle. |
Copy file name to clipboardExpand all lines: english/javascript-cpp/displayunitlabel/_index.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -89,7 +89,7 @@ var uint8Array = workbook.save(SaveFormat.Xlsx);
89
89
|[defaultYRatioToChart](#defaultYRatioToChart--)| number | Readonly. Represents y of default position in units of Fraction of the chart area. |
90
90
|[defaultWidthRatioToChart](#defaultWidthRatioToChart--)| number | Readonly. Represents width of default position in units of Fraction of the chart area. |
91
91
|[defaultHeightRatioToChart](#defaultHeightRatioToChart--)| number | Readonly. Represents height of default position in units of Fraction of the chart area. |
92
-
|[isDeleted](#isDeleted--)| boolean | Indicates whether this data labels are deleted. |
92
+
|[isDeleted](#isDeleted--)| boolean | Indicates whether this data label is deleted. |
93
93
|[textHorizontalAlignment](#textHorizontalAlignment--)| TextAlignmentType | Gets and sets the text horizontal alignment. |
94
94
|[textVerticalAlignment](#textVerticalAlignment--)| TextAlignmentType | Gets or sets the text vertical alignment of text. |
95
95
|[rotationAngle](#rotationAngle--)| number | Represents the text rotation angle. |
Copy file name to clipboardExpand all lines: english/javascript-cpp/ebookloadoptions/_index.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -62,6 +62,7 @@ class EbookLoadOptions extends HtmlLoadOptions;
62
62
|[tableLoadOptions](#tableLoadOptions--)| HtmlTableLoadOptionCollection | Readonly. Get the HtmlTableLoadOptionCollection instance |
63
63
|[detectLaTeX](#detectLaTeX--)| boolean | Indicates whether to detect LaTeX formula in the HTML file. The default value is false. |
64
64
|[paragrahLayoutMode](#paragrahLayoutMode--)| HtmlParagraphLayoutMode | Specifies how HTML <p> elements are rendered when loading HTML. The default value is [HtmlParagraphLayoutMode.Normal](../htmlparagraphlayoutmode.normal/). |
65
+
|[hyperlinkLoadMode](#hyperlinkLoadMode--)| HyperlinkLoadMode | Specifies how hyperlinks are loaded when loading HTML. |
Copy file name to clipboardExpand all lines: english/javascript-cpp/htmlloadoptions/_index.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,6 +36,7 @@ class HtmlLoadOptions extends AbstractTextLoadOptions;
36
36
|[tableLoadOptions](#tableLoadOptions--)| HtmlTableLoadOptionCollection | Readonly. Get the HtmlTableLoadOptionCollection instance |
37
37
|[detectLaTeX](#detectLaTeX--)| boolean | Indicates whether to detect LaTeX formula in the HTML file. The default value is false. |
38
38
|[paragrahLayoutMode](#paragrahLayoutMode--)| HtmlParagraphLayoutMode | Specifies how HTML <p> elements are rendered when loading HTML. The default value is [HtmlParagraphLayoutMode.Normal](../htmlparagraphlayoutmode.normal/). |
39
+
|[hyperlinkLoadMode](#hyperlinkLoadMode--)| HyperlinkLoadMode | Specifies how hyperlinks are loaded when loading HTML. |
39
40
|[loadFormat](#loadFormat--)| LoadFormat | Readonly. Gets the load format. |
40
41
|[password](#password--)| string | Gets and set the password of the workbook. |
41
42
|[parsingFormulaOnOpen](#parsingFormulaOnOpen--)| boolean | Indicates whether parsing the formula when reading the file. |
second_title: Aspose.Cells for JavaScript via C++ API Reference
4
+
description: Specifies how hyperlinks are handled when loading HTML.
5
+
type: docs
6
+
url: /javascript-cpp/hyperlinkloadmode/
7
+
---
8
+
9
+
## HyperlinkLoadMode enumeration
10
+
Specifies how hyperlinks are handled when loading HTML.
11
+
### Values
12
+
| Name | Value | Description |
13
+
| --- | --- | --- |
14
+
| Normal |`0`| Only the first hyperlink in a cell is loaded, subsequent ones are ignored. |
15
+
| AllowMultiple |`1`| All hyperlinks in a cell are added to [Worksheet.Hyperlinks](../worksheet.hyperlinks/). Note that MS Excel itself supports only one hyperlink per cell, so this option may produce files that Excel cannot fully render. |
0 commit comments