Skip to content

Commit 38270e8

Browse files
committed
Update to v19.4
1 parent fee327d commit 38270e8

Some content is hidden

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

53 files changed

+4188
-308
lines changed

README.md

Lines changed: 32 additions & 2 deletions
Large diffs are not rendered by default.

docs/BorderCornerStyle.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# BorderCornerStyle
2+
Enumerates the border corner styles for border.
3+
4+
## Enum
5+
Name | Type | Value | Description
6+
------------ | ------------- | ------------- | -------------
7+
**None** | **string** | 'None' | None border style.
8+
**Round** | **string** | 'Round' | Round border style.
9+
10+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) [[View Source]](../src/models/borderCornerStyle.ts)
11+

docs/BorderInfo.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# BorderInfo
2+
This class represents border for graphics elements.
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**left** | [**GraphInfo**](GraphInfo.md) | Gets or sets a object that indicates left of the border. | [optional]
8+
**right** | [**GraphInfo**](GraphInfo.md) | Gets or sets a object that indicates right of the border. | [optional]
9+
**top** | [**GraphInfo**](GraphInfo.md) | Gets or sets a object that indicates the top border. | [optional]
10+
**bottom** | [**GraphInfo**](GraphInfo.md) | Gets or sets a object that indicates bottom of the border. | [optional]
11+
**roundedBorderRadius** | **number** | Gets or sets a rouded border radius | [optional]
12+
13+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) [[View Source]](../src/models/borderInfo.ts)
14+

docs/Cell.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Cell
2+
Represents a cell of the table's row.
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**isNoBorder** | **boolean** | Gets or sets the cell have border. | [optional]
8+
**margin** | [**MarginInfo**](MarginInfo.md) | Gets or sets the padding. | [optional]
9+
**border** | [**BorderInfo**](BorderInfo.md) | Gets or sets the border. | [optional]
10+
**backgroundColor** | [**Color**](Color.md) | Gets or sets the background color. | [optional]
11+
**backgroundImageFile** | **string** | Gets or sets the background image file. | [optional]
12+
**alignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets or sets the alignment. | [optional]
13+
**defaultCellTextState** | [**TextState**](TextState.md) | Gets or sets the default cell text state. | [optional]
14+
**paragraphs** | [**Array<TextRect>**](TextRect.md) | Gets or sets the cell's formatted text. | [optional]
15+
**isWordWrapped** | **boolean** | Gets or sets the cell's text word wrapped. | [optional]
16+
**verticalAlignment** | [**VerticalAlignment**](VerticalAlignment.md) | Gets or sets the vertical alignment. | [optional]
17+
**colSpan** | **number** | Gets or sets the column span. | [optional]
18+
**rowSpan** | **number** | Gets or sets the row span. | [optional]
19+
**width** | **number** | Gets or sets the column width. | [optional]
20+
21+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) [[View Source]](../src/models/cell.ts)
22+

docs/ColumnAdjustment.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# ColumnAdjustment
2+
Enumerates column adjustment types.
3+
4+
## Enum
5+
Name | Type | Value | Description
6+
------------ | ------------- | ------------- | -------------
7+
**AutoFitToContent** | **string** | 'AutoFitToContent' | Auto fit to content.
8+
**AutoFitToWindow** | **string** | 'AutoFitToWindow' | Auto fit to window.
9+
**Customized** | **string** | 'Customized' | Customized.
10+
11+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) [[View Source]](../src/models/columnAdjustment.ts)
12+

docs/CryptoAlgorithm.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# CryptoAlgorithm
2+
Represent type of cryptographic algorithm that used in encryption/decryption
3+
routines.
4+
5+
## Enum
6+
Name | Type | Value | Description
7+
------------ | ------------- | ------------- | -------------
8+
**AESx128** | **string** | 'AESx128' | AES with key length 128.
9+
**AESx256** | **string** | 'AESx256' | AES with key length 256.
10+
**RC4x128** | **string** | 'RC4x128' | RC4 with key length 128.
11+
**RC4x40** | **string** | 'RC4x40' | RC4 with key length 40.
12+
13+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) [[View Source]](../src/models/cryptoAlgorithm.ts)
14+

docs/GraphInfo.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# GraphInfo
2+
Represents graphics info.
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**lineWidth** | **number** | Gets or sets a float value that indicates the line width of the graph. | [optional]
8+
**color** | [**Color**](Color.md) | Gets or sets a object that indicates the color of the graph. | [optional]
9+
**dashArray** | **Array<number>** | Gets or sets a dash array. | [optional]
10+
**dashPhase** | **number** | Gets or sets a dash phase. | [optional]
11+
**fillColor** | [**Color**](Color.md) | Gets or sets a object that indicates the fill color of the graph. | [optional]
12+
**isDoubled** | **boolean** | Gets or sets is border doubled. | [optional]
13+
**skewAngleX** | **number** | Gets or sets a float value that indicates the skew angle of the x-coordinate when transforming a coordinate system. | [optional]
14+
**skewAngleY** | **number** | Gets or sets a float value that indicates the skew angle of the y-coordinate when transforming a coordinate system. | [optional]
15+
**scalingRateX** | **number** | Gets or sets a float value that indicates the scaling rate of the x-coordinate when transforming a coordinate system. | [optional]
16+
**scalingRateY** | **number** | Gets or sets a float value that indicates the scaling rate of the y-coordinate when transforming a coordinate system. | [optional]
17+
**rotationAngle** | **number** | Gets or sets a float value that indicates the rotation angle of the coordinate system when transforming a coordinate system. | [optional]
18+
19+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) [[View Source]](../src/models/graphInfo.ts)
20+

docs/ImageFooter.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# ImageFooter
2+
Represents Pdf image footer.
3+
4+
*Inherited from [StampBase](StampBase.md)*
5+
## Properties
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**fileName** | **string** | Gets or sets the file name. | [optional]
9+
**width** | **number** | Gets or sets image width. Setting this property allos to scal image horizontally. | [optional]
10+
**height** | **number** | Gets or sets image height. Setting this image allows to scale image vertically. | [optional]
11+
**bottomMargin** | **number** | Gets or sets bottom margin of stamp. | [optional]
12+
**leftMargin** | **number** | Gets or sets left margin of stamp. | [optional]
13+
**rightMargin** | **number** | Gets or sets right margin of stamp. | [optional]
14+
**background** | **boolean** | Sets or gets a bool value that indicates the content is stamped as background. If the value is true, the stamp content is layed at the bottom. By defalt, the value is false, the stamp content is layed at the top.<br />*Inherited from [StampBase](StampBase.md)* | [optional]
15+
**horizontalAlignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets or sets Horizontal alignment of stamp on the page. <br />*Inherited from [StampBase](StampBase.md)* | [optional]
16+
**opacity** | **number** | Gets or sets a value to indicate the stamp opacity. The value is from 0.0 to 1.0. By default the value is 1.0.<br />*Inherited from [StampBase](StampBase.md)* | [optional]
17+
**rotate** | [**Rotation**](Rotation.md) | Sets or gets the rotation of stamp content according values. Note. This property is for set angles which are multiples of 90 degrees (0, 90, 180, 270 degrees). To set arbitrary angle use RotateAngle property. If angle set by ArbitraryAngle is not multiple of 90 then Rotate property returns Rotation.None.<br />*Inherited from [StampBase](StampBase.md)* | [optional]
18+
**rotateAngle** | **number** | Gets or sets rotate angle of stamp in degrees. This property allows to set arbitrary rotate angle. <br />*Inherited from [StampBase](StampBase.md)* | [optional]
19+
**xIndent** | **number** | Horizontal stamp coordinate, starting from the left.<br />*Inherited from [StampBase](StampBase.md)* | [optional]
20+
**yIndent** | **number** | Vertical stamp coordinate, starting from the bottom.<br />*Inherited from [StampBase](StampBase.md)* | [optional]
21+
**zoom** | **number** | Zooming factor of the stamp. Allows to scale stamp.<br />*Inherited from [StampBase](StampBase.md)* | [optional]
22+
**links** | [**Array&lt;Link&gt;**](Link.md) | Link to the document.<br />*Inherited from [LinkElement](LinkElement.md)* | [optional]
23+
24+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) [[View Source]](../src/models/imageFooter.ts)
25+

docs/ImageHeader.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# ImageHeader
2+
Represents Pdf image header.
3+
4+
*Inherited from [StampBase](StampBase.md)*
5+
## Properties
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**fileName** | **string** | Gets or sets the file name. | [optional]
9+
**width** | **number** | Gets or sets image width. Setting this property allos to scal image horizontally. | [optional]
10+
**height** | **number** | Gets or sets image height. Setting this image allows to scale image vertically. | [optional]
11+
**leftMargin** | **number** | Gets or sets left margin of stamp. | [optional]
12+
**topMargin** | **number** | Gets or sets top margin of stamp. | [optional]
13+
**rightMargin** | **number** | Gets or sets right margin of stamp. | [optional]
14+
**background** | **boolean** | Sets or gets a bool value that indicates the content is stamped as background. If the value is true, the stamp content is layed at the bottom. By defalt, the value is false, the stamp content is layed at the top.<br />*Inherited from [StampBase](StampBase.md)* | [optional]
15+
**horizontalAlignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets or sets Horizontal alignment of stamp on the page. <br />*Inherited from [StampBase](StampBase.md)* | [optional]
16+
**opacity** | **number** | Gets or sets a value to indicate the stamp opacity. The value is from 0.0 to 1.0. By default the value is 1.0.<br />*Inherited from [StampBase](StampBase.md)* | [optional]
17+
**rotate** | [**Rotation**](Rotation.md) | Sets or gets the rotation of stamp content according values. Note. This property is for set angles which are multiples of 90 degrees (0, 90, 180, 270 degrees). To set arbitrary angle use RotateAngle property. If angle set by ArbitraryAngle is not multiple of 90 then Rotate property returns Rotation.None.<br />*Inherited from [StampBase](StampBase.md)* | [optional]
18+
**rotateAngle** | **number** | Gets or sets rotate angle of stamp in degrees. This property allows to set arbitrary rotate angle. <br />*Inherited from [StampBase](StampBase.md)* | [optional]
19+
**xIndent** | **number** | Horizontal stamp coordinate, starting from the left.<br />*Inherited from [StampBase](StampBase.md)* | [optional]
20+
**yIndent** | **number** | Vertical stamp coordinate, starting from the bottom.<br />*Inherited from [StampBase](StampBase.md)* | [optional]
21+
**zoom** | **number** | Zooming factor of the stamp. Allows to scale stamp.<br />*Inherited from [StampBase](StampBase.md)* | [optional]
22+
**links** | [**Array&lt;Link&gt;**](Link.md) | Link to the document.<br />*Inherited from [LinkElement](LinkElement.md)* | [optional]
23+
24+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) [[View Source]](../src/models/imageHeader.ts)
25+

docs/ImageStamp.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ Name | Type | Description | Notes
88
**fileName** | **string** | Gets or sets the file name. | [optional]
99
**width** | **number** | Gets or sets image width. Setting this property allos to scal image horizontally. | [optional]
1010
**height** | **number** | Gets or sets image height. Setting this image allows to scale image vertically. | [optional]
11+
**verticalAlignment** | [**VerticalAlignment**](VerticalAlignment.md) | Gets or sets vertical alignment of stamp on page. | [optional]
12+
**bottomMargin** | **number** | Gets or sets bottom margin of stamp. | [optional]
13+
**leftMargin** | **number** | Gets or sets left margin of stamp. | [optional]
14+
**topMargin** | **number** | Gets or sets top margin of stamp. | [optional]
15+
**rightMargin** | **number** | Gets or sets right margin of stamp. | [optional]
1116
**background** | **boolean** | Sets or gets a bool value that indicates the content is stamped as background. If the value is true, the stamp content is layed at the bottom. By defalt, the value is false, the stamp content is layed at the top.<br />*Inherited from [StampBase](StampBase.md)* | [optional]
12-
**bottomMargin** | **number** | Gets or sets bottom margin of stamp.<br />*Inherited from [StampBase](StampBase.md)* | [optional]
1317
**horizontalAlignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets or sets Horizontal alignment of stamp on the page. <br />*Inherited from [StampBase](StampBase.md)* | [optional]
14-
**leftMargin** | **number** | Gets or sets left margin of stamp.<br />*Inherited from [StampBase](StampBase.md)* | [optional]
1518
**opacity** | **number** | Gets or sets a value to indicate the stamp opacity. The value is from 0.0 to 1.0. By default the value is 1.0.<br />*Inherited from [StampBase](StampBase.md)* | [optional]
16-
**rightMargin** | **number** | Gets or sets right margin of stamp.<br />*Inherited from [StampBase](StampBase.md)* | [optional]
1719
**rotate** | [**Rotation**](Rotation.md) | Sets or gets the rotation of stamp content according values. Note. This property is for set angles which are multiples of 90 degrees (0, 90, 180, 270 degrees). To set arbitrary angle use RotateAngle property. If angle set by ArbitraryAngle is not multiple of 90 then Rotate property returns Rotation.None.<br />*Inherited from [StampBase](StampBase.md)* | [optional]
1820
**rotateAngle** | **number** | Gets or sets rotate angle of stamp in degrees. This property allows to set arbitrary rotate angle. <br />*Inherited from [StampBase](StampBase.md)* | [optional]
19-
**topMargin** | **number** | Gets or sets top margin of stamp.<br />*Inherited from [StampBase](StampBase.md)* | [optional]
20-
**verticalAlignment** | [**VerticalAlignment**](VerticalAlignment.md) | Gets or sets vertical alignment of stamp on page.<br />*Inherited from [StampBase](StampBase.md)* | [optional]
2121
**xIndent** | **number** | Horizontal stamp coordinate, starting from the left.<br />*Inherited from [StampBase](StampBase.md)* | [optional]
2222
**yIndent** | **number** | Vertical stamp coordinate, starting from the bottom.<br />*Inherited from [StampBase](StampBase.md)* | [optional]
2323
**zoom** | **number** | Zooming factor of the stamp. Allows to scale stamp.<br />*Inherited from [StampBase](StampBase.md)* | [optional]

0 commit comments

Comments
 (0)