Skip to content

Commit b56df63

Browse files
committed
Update to v19.10
1 parent a1c4b84 commit b56df63

31 files changed

+4770
-787
lines changed

README.md

Lines changed: 26 additions & 4 deletions
Large diffs are not rendered by default.

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ apply plugin: 'idea'
2020
apply plugin: 'eclipse'
2121

2222
group = 'com.aspose'
23-
version = '19.9.0'
23+
version = '19.10.0'
2424

2525
buildscript {
2626
repositories {
@@ -71,7 +71,7 @@ dependencies {
7171
publish {
7272
groupId = 'com.aspose'
7373
artifactId = 'aspose-cloud-pdf'
74-
publishVersion = '19.9.0'
74+
publishVersion = '19.10.0'
7575
desc = 'Aspose.PDF Cloud is a REST API for creating and editing PDF files. It can also be used to convert PDF files to different formats like DOC, HTML, XPS, TIFF and many more. Aspose.PDF Cloud gives you control: create PDFs from scratch or from HTML, XML, template, database, XPS or an image. Render PDFs to image formats such as JPEG, PNG, GIF, BMP, TIFF and many others. Aspose.PDF Cloud helps you manipulate elements of a PDF file like text, annotations, watermarks, signatures, bookmarks, stamps and so on. Its REST API also allows you to manage PDF pages by using features like merging, splitting, and inserting. Add images to a PDF file or convert PDF pages to images.'
7676
licences = ['MIT']
7777
website = 'https://products.aspose.cloud/pdf/cloud'

docs/BoxStyle.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
2+
# BoxStyle
3+
Represents an enumeration of available BoxStyle types.
4+
5+
## Enum
6+
Name | Description
7+
------------ | ------------
8+
**Circle** | Circle style.
9+
**Check** | Check style.
10+
**Cross** | Cross style.
11+
**Diamond** | Diamond style.
12+
**Square** | Square style.
13+
**Star** | Star style.
14+
15+
16+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
17+
18+

docs/CheckBoxField.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
2+
# CheckBoxField
3+
Provides CheckBoxField.
4+
5+
## Properties
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**allowedStates** | **List<String>** | Returns list of allowed states. | [optional]
9+
**style** | [**BoxStyle**](BoxStyle.md) | Gets or sets style of check box. | [optional]
10+
**activeState** | **String** | Gets or sets current annotation appearance state. | [optional]
11+
**checked** | **Boolean** | Gets or sets state of check box. |
12+
**exportValue** | **String** | Gets or sets export value of CheckBox field. | [optional]
13+
**partialName** | **String** | Field name. | [optional]
14+
**rect** | [**Rectangle**](Rectangle.md) | Field rectangle. | [optional]
15+
**value** | **String** | Field value. | [optional]
16+
**pageIndex** | **Integer** | Page index. |
17+
**height** | **Double** | Gets or sets height of the field. | [optional]
18+
**width** | **Double** | Gets or sets width of the field. | [optional]
19+
**zIndex** | **Integer** | Z index. | [optional]
20+
**isGroup** | **Boolean** | Is group. |
21+
**parent** | [**FormField**](FormField.md) | Gets field parent. | [optional]
22+
**isSharedField** | **Boolean** | Property for Generator support. Used when field is added to header or footer. If true, this field will created once and it's appearance will be visible on all pages of the document. If false, separated field will be created for every document page. | [optional]
23+
**flags** | [**List<AnnotationFlags>**](AnnotationFlags.md) | Gets Flags of the field. | [optional]
24+
**color** | [**Color**](Color.md) | Color of the annotation. | [optional]
25+
**contents** | **String** | Get the field content. | [optional]
26+
**margin** | [**MarginInfo**](MarginInfo.md) | Gets or sets a outer margin for paragraph (for pdf generation) | [optional]
27+
**highlighting** | [**LinkHighlightingMode**](LinkHighlightingMode.md) | Field highlighting mode. | [optional]
28+
**horizontalAlignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets HorizontalAlignment of the field. | [optional]
29+
**verticalAlignment** | [**VerticalAlignment**](VerticalAlignment.md) | Gets VerticalAlignment of the field. | [optional]
30+
**links** | [**List<Link>**](Link.md) | Link to the document. | [optional]
31+
32+
33+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
34+
35+

docs/CheckBoxFieldResponse.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
2+
# CheckBoxFieldResponse
3+
Represents response containing single checkbox field object
4+
5+
## Properties
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**field** | [**CheckBoxField**](CheckBoxField.md) | Checkbox field object | [optional]
9+
**code** | **Integer** | Response status code. |
10+
**status** | **String** | Response status. | [optional]
11+
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)
14+
15+

docs/CheckBoxFields.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
2+
# CheckBoxFields
3+
Object representing a list of checkbox fields.
4+
5+
## Properties
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**list** | [**List<CheckBoxField>**](CheckBoxField.md) | List of checkbox fields. | [optional]
9+
**links** | [**List<Link>**](Link.md) | Link to the document. | [optional]
10+
11+
12+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
13+
14+

docs/CheckBoxFieldsResponse.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
2+
# CheckBoxFieldsResponse
3+
Represents response containing multiple checkbox field objects
4+
5+
## Properties
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**fields** | [**CheckBoxFields**](CheckBoxFields.md) | Checkbox fields object | [optional]
9+
**code** | **Integer** | Response status code. |
10+
**status** | **String** | Response status. | [optional]
11+
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)
14+
15+

docs/ChoiceField.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
2+
# ChoiceField
3+
Provides Choice field.
4+
5+
## Properties
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**multiSelect** | **Boolean** | Gets or sets multiselection flag. | [optional]
9+
**partialName** | **String** | Field name. | [optional]
10+
**rect** | [**Rectangle**](Rectangle.md) | Field rectangle. | [optional]
11+
**value** | **String** | Field value. | [optional]
12+
**pageIndex** | **Integer** | Page index. |
13+
**height** | **Double** | Gets or sets height of the field. | [optional]
14+
**width** | **Double** | Gets or sets width of the field. | [optional]
15+
**zIndex** | **Integer** | Z index. | [optional]
16+
**isGroup** | **Boolean** | Is group. |
17+
**parent** | [**FormField**](FormField.md) | Gets field parent. | [optional]
18+
**isSharedField** | **Boolean** | Property for Generator support. Used when field is added to header or footer. If true, this field will created once and it's appearance will be visible on all pages of the document. If false, separated field will be created for every document page. | [optional]
19+
**flags** | [**List<AnnotationFlags>**](AnnotationFlags.md) | Gets Flags of the field. | [optional]
20+
**color** | [**Color**](Color.md) | Color of the annotation. | [optional]
21+
**contents** | **String** | Get the field content. | [optional]
22+
**margin** | [**MarginInfo**](MarginInfo.md) | Gets or sets a outer margin for paragraph (for pdf generation) | [optional]
23+
**highlighting** | [**LinkHighlightingMode**](LinkHighlightingMode.md) | Field highlighting mode. | [optional]
24+
**horizontalAlignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets HorizontalAlignment of the field. | [optional]
25+
**verticalAlignment** | [**VerticalAlignment**](VerticalAlignment.md) | Gets VerticalAlignment of the field. | [optional]
26+
**links** | [**List<Link>**](Link.md) | Link to the document. | [optional]
27+
28+
29+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
30+
31+

docs/Option.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
2+
# Option
3+
Provides form option.
4+
5+
## Properties
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**value** | **String** | Gets or sets option export value. | [optional]
9+
**name** | **String** | Gets or sets name of option. | [optional]
10+
**selected** | **Boolean** | Gets or sets selected status of option. Returns true if option is selected. | [optional]
11+
**index** | **Integer** | Gets index of the option. | [optional]
12+
13+
14+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
15+
16+

0 commit comments

Comments
 (0)