Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 32 additions & 2 deletions README.md

Large diffs are not rendered by default.

11 changes: 11 additions & 0 deletions docs/BorderCornerStyle.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# BorderCornerStyle
Enumerates the border corner styles for border.

## Enum
Name | Type | Value | Description
------------ | ------------- | ------------- | -------------
**None** | **string** | 'None' | None border style.
**Round** | **string** | 'Round' | Round border style.

[[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)

14 changes: 14 additions & 0 deletions docs/BorderInfo.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# BorderInfo
This class represents border for graphics elements.

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**left** | [**GraphInfo**](GraphInfo.md) | Gets or sets a object that indicates left of the border. | [optional]
**right** | [**GraphInfo**](GraphInfo.md) | Gets or sets a object that indicates right of the border. | [optional]
**top** | [**GraphInfo**](GraphInfo.md) | Gets or sets a object that indicates the top border. | [optional]
**bottom** | [**GraphInfo**](GraphInfo.md) | Gets or sets a object that indicates bottom of the border. | [optional]
**roundedBorderRadius** | **number** | Gets or sets a rouded border radius | [optional]

[[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)

22 changes: 22 additions & 0 deletions docs/Cell.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Cell
Represents a cell of the table's row.

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**isNoBorder** | **boolean** | Gets or sets the cell have border. | [optional]
**margin** | [**MarginInfo**](MarginInfo.md) | Gets or sets the padding. | [optional]
**border** | [**BorderInfo**](BorderInfo.md) | Gets or sets the border. | [optional]
**backgroundColor** | [**Color**](Color.md) | Gets or sets the background color. | [optional]
**backgroundImageFile** | **string** | Gets or sets the background image file. | [optional]
**alignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets or sets the alignment. | [optional]
**defaultCellTextState** | [**TextState**](TextState.md) | Gets or sets the default cell text state. | [optional]
**paragraphs** | [**Array<TextRect>**](TextRect.md) | Gets or sets the cell's formatted text. | [optional]
**isWordWrapped** | **boolean** | Gets or sets the cell's text word wrapped. | [optional]
**verticalAlignment** | [**VerticalAlignment**](VerticalAlignment.md) | Gets or sets the vertical alignment. | [optional]
**colSpan** | **number** | Gets or sets the column span. | [optional]
**rowSpan** | **number** | Gets or sets the row span. | [optional]
**width** | **number** | Gets or sets the column width. | [optional]

[[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)

12 changes: 12 additions & 0 deletions docs/ColumnAdjustment.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# ColumnAdjustment
Enumerates column adjustment types.

## Enum
Name | Type | Value | Description
------------ | ------------- | ------------- | -------------
**AutoFitToContent** | **string** | 'AutoFitToContent' | Auto fit to content.
**AutoFitToWindow** | **string** | 'AutoFitToWindow' | Auto fit to window.
**Customized** | **string** | 'Customized' | Customized.

[[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)

14 changes: 14 additions & 0 deletions docs/CryptoAlgorithm.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# CryptoAlgorithm
Represent type of cryptographic algorithm that used in encryption/decryption
routines.

## Enum
Name | Type | Value | Description
------------ | ------------- | ------------- | -------------
**AESx128** | **string** | 'AESx128' | AES with key length 128.
**AESx256** | **string** | 'AESx256' | AES with key length 256.
**RC4x128** | **string** | 'RC4x128' | RC4 with key length 128.
**RC4x40** | **string** | 'RC4x40' | RC4 with key length 40.

[[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)

20 changes: 20 additions & 0 deletions docs/GraphInfo.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# GraphInfo
Represents graphics info.

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**lineWidth** | **number** | Gets or sets a float value that indicates the line width of the graph. | [optional]
**color** | [**Color**](Color.md) | Gets or sets a object that indicates the color of the graph. | [optional]
**dashArray** | **Array<number>** | Gets or sets a dash array. | [optional]
**dashPhase** | **number** | Gets or sets a dash phase. | [optional]
**fillColor** | [**Color**](Color.md) | Gets or sets a object that indicates the fill color of the graph. | [optional]
**isDoubled** | **boolean** | Gets or sets is border doubled. | [optional]
**skewAngleX** | **number** | Gets or sets a float value that indicates the skew angle of the x-coordinate when transforming a coordinate system. | [optional]
**skewAngleY** | **number** | Gets or sets a float value that indicates the skew angle of the y-coordinate when transforming a coordinate system. | [optional]
**scalingRateX** | **number** | Gets or sets a float value that indicates the scaling rate of the x-coordinate when transforming a coordinate system. | [optional]
**scalingRateY** | **number** | Gets or sets a float value that indicates the scaling rate of the y-coordinate when transforming a coordinate system. | [optional]
**rotationAngle** | **number** | Gets or sets a float value that indicates the rotation angle of the coordinate system when transforming a coordinate system. | [optional]

[[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)

25 changes: 25 additions & 0 deletions docs/ImageFooter.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# ImageFooter
Represents Pdf image footer.

*Inherited from [StampBase](StampBase.md)*
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**fileName** | **string** | Gets or sets the file name. | [optional]
**width** | **number** | Gets or sets image width. Setting this property allos to scal image horizontally. | [optional]
**height** | **number** | Gets or sets image height. Setting this image allows to scale image vertically. | [optional]
**bottomMargin** | **number** | Gets or sets bottom margin of stamp. | [optional]
**leftMargin** | **number** | Gets or sets left margin of stamp. | [optional]
**rightMargin** | **number** | Gets or sets right margin of stamp. | [optional]
**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]
**horizontalAlignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets or sets Horizontal alignment of stamp on the page. <br />*Inherited from [StampBase](StampBase.md)* | [optional]
**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]
**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]
**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]
**xIndent** | **number** | Horizontal stamp coordinate, starting from the left.<br />*Inherited from [StampBase](StampBase.md)* | [optional]
**yIndent** | **number** | Vertical stamp coordinate, starting from the bottom.<br />*Inherited from [StampBase](StampBase.md)* | [optional]
**zoom** | **number** | Zooming factor of the stamp. Allows to scale stamp.<br />*Inherited from [StampBase](StampBase.md)* | [optional]
**links** | [**Array&lt;Link&gt;**](Link.md) | Link to the document.<br />*Inherited from [LinkElement](LinkElement.md)* | [optional]

[[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 changes: 25 additions & 0 deletions docs/ImageHeader.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# ImageHeader
Represents Pdf image header.

*Inherited from [StampBase](StampBase.md)*
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**fileName** | **string** | Gets or sets the file name. | [optional]
**width** | **number** | Gets or sets image width. Setting this property allos to scal image horizontally. | [optional]
**height** | **number** | Gets or sets image height. Setting this image allows to scale image vertically. | [optional]
**leftMargin** | **number** | Gets or sets left margin of stamp. | [optional]
**topMargin** | **number** | Gets or sets top margin of stamp. | [optional]
**rightMargin** | **number** | Gets or sets right margin of stamp. | [optional]
**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]
**horizontalAlignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets or sets Horizontal alignment of stamp on the page. <br />*Inherited from [StampBase](StampBase.md)* | [optional]
**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]
**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]
**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]
**xIndent** | **number** | Horizontal stamp coordinate, starting from the left.<br />*Inherited from [StampBase](StampBase.md)* | [optional]
**yIndent** | **number** | Vertical stamp coordinate, starting from the bottom.<br />*Inherited from [StampBase](StampBase.md)* | [optional]
**zoom** | **number** | Zooming factor of the stamp. Allows to scale stamp.<br />*Inherited from [StampBase](StampBase.md)* | [optional]
**links** | [**Array&lt;Link&gt;**](Link.md) | Link to the document.<br />*Inherited from [LinkElement](LinkElement.md)* | [optional]

[[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)

10 changes: 5 additions & 5 deletions docs/ImageStamp.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ Name | Type | Description | Notes
**fileName** | **string** | Gets or sets the file name. | [optional]
**width** | **number** | Gets or sets image width. Setting this property allos to scal image horizontally. | [optional]
**height** | **number** | Gets or sets image height. Setting this image allows to scale image vertically. | [optional]
**verticalAlignment** | [**VerticalAlignment**](VerticalAlignment.md) | Gets or sets vertical alignment of stamp on page. | [optional]
**bottomMargin** | **number** | Gets or sets bottom margin of stamp. | [optional]
**leftMargin** | **number** | Gets or sets left margin of stamp. | [optional]
**topMargin** | **number** | Gets or sets top margin of stamp. | [optional]
**rightMargin** | **number** | Gets or sets right margin of stamp. | [optional]
**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]
**bottomMargin** | **number** | Gets or sets bottom margin of stamp.<br />*Inherited from [StampBase](StampBase.md)* | [optional]
**horizontalAlignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets or sets Horizontal alignment of stamp on the page. <br />*Inherited from [StampBase](StampBase.md)* | [optional]
**leftMargin** | **number** | Gets or sets left margin of stamp.<br />*Inherited from [StampBase](StampBase.md)* | [optional]
**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]
**rightMargin** | **number** | Gets or sets right margin of stamp.<br />*Inherited from [StampBase](StampBase.md)* | [optional]
**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]
**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]
**topMargin** | **number** | Gets or sets top margin of stamp.<br />*Inherited from [StampBase](StampBase.md)* | [optional]
**verticalAlignment** | [**VerticalAlignment**](VerticalAlignment.md) | Gets or sets vertical alignment of stamp on page.<br />*Inherited from [StampBase](StampBase.md)* | [optional]
**xIndent** | **number** | Horizontal stamp coordinate, starting from the left.<br />*Inherited from [StampBase](StampBase.md)* | [optional]
**yIndent** | **number** | Vertical stamp coordinate, starting from the bottom.<br />*Inherited from [StampBase](StampBase.md)* | [optional]
**zoom** | **number** | Zooming factor of the stamp. Allows to scale stamp.<br />*Inherited from [StampBase](StampBase.md)* | [optional]
Expand Down
10 changes: 5 additions & 5 deletions docs/MarginInfo.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# MarginInfo

This class represents a margin for different objects.

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**left** | **number** | |
**right** | **number** | |
**top** | **number** | |
**bottom** | **number** | |
**left** | **number** | Gets or sets a float value that indicates the left margin. | [optional]
**right** | **number** | Gets or sets a float value that indicates the right margin. | [optional]
**top** | **number** | Gets or sets a float value that indicates the top margin. | [optional]
**bottom** | **number** | Gets or sets a float value that indicates the bottom margin. | [optional]

[[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/marginInfo.ts)

26 changes: 26 additions & 0 deletions docs/PageNumberStamp.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# PageNumberStamp
Represents Pdf stamps.

*Inherited from [StampBase](StampBase.md)*
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**value** | **string** | Gets or sets string value which is used as stamp on the page. | [optional]
**startingNumber** | **number** | Gets or sets value of the number of starting page. Other pages will be numbered starting from this value. | [optional]
**verticalAlignment** | [**VerticalAlignment**](VerticalAlignment.md) | Gets or sets vertical alignment of stamp on page. | [optional]
**bottomMargin** | **number** | Gets or sets bottom margin of stamp. | [optional]
**leftMargin** | **number** | Gets or sets left margin of stamp. | [optional]
**topMargin** | **number** | Gets or sets top margin of stamp. | [optional]
**rightMargin** | **number** | Gets or sets right margin of stamp. | [optional]
**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]
**horizontalAlignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets or sets Horizontal alignment of stamp on the page. <br />*Inherited from [StampBase](StampBase.md)* | [optional]
**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]
**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]
**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]
**xIndent** | **number** | Horizontal stamp coordinate, starting from the left.<br />*Inherited from [StampBase](StampBase.md)* | [optional]
**yIndent** | **number** | Vertical stamp coordinate, starting from the bottom.<br />*Inherited from [StampBase](StampBase.md)* | [optional]
**zoom** | **number** | Zooming factor of the stamp. Allows to scale stamp.<br />*Inherited from [StampBase](StampBase.md)* | [optional]
**links** | [**Array&lt;Link&gt;**](Link.md) | Link to the document.<br />*Inherited from [LinkElement](LinkElement.md)* | [optional]

[[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/pageNumberStamp.ts)

Loading