Skip to content

Commit 79b677f

Browse files
Merge pull request #5 from kaferi/master
Update to v19.3
2 parents 32c0fcf + a5d0b60 commit 79b677f

38 files changed

+3238
-156
lines changed

README.md

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

cell_recognized.go

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
/**
2+
*
3+
* Copyright (c) 2019 Aspose.PDF Cloud
4+
* Permission is hereby granted, free of charge, to any person obtaining a copy
5+
* of this software and associated documentation files (the "Software"), to deal
6+
* in the Software without restriction, including without limitation the rights
7+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8+
* copies of the Software, and to permit persons to whom the Software is
9+
* furnished to do so, subject to the following conditions:
10+
* The above copyright notice and this permission notice shall be included in all
11+
* copies or substantial portions of the Software.
12+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
13+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
14+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
15+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
16+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
17+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
18+
* SOFTWARE.
19+
*
20+
*/
21+
package asposepdfcloud
22+
23+
type CellRecognized struct {
24+
// Gets collection of objects that describes text containing in the cell
25+
TextRects *TextRects `json:"TextRects,omitempty"`
26+
// Gets rectangle that describes position of the cell on page
27+
Rectangle *Rectangle `json:"Rectangle,omitempty"`
28+
}

docs/CellRecognized.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# CellRecognized
2+
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**TextRects** | [***TextRects**](TextRects.md) | Gets collection of objects that describes text containing in the cell | [optional] [default to null]
8+
**Rectangle** | [***Rectangle**](Rectangle.md) | Gets rectangle that describes position of the cell on page | [optional] [default to null]
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]](../cell_recognized.go)
11+
12+

docs/ImageStamp.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# ImageStamp
2+
Represents Pdf stamps.
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**Links** | [**[]Link**](Link.md) | Link to the document. | [optional] [default to null]
8+
**Background** | **bool** | 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. | [optional] [default to null]
9+
**BottomMargin** | **float64** | Gets or sets bottom margin of stamp. | [optional] [default to null]
10+
**HorizontalAlignment** | [***HorizontalAlignment**](HorizontalAlignment.md) | Gets or sets Horizontal alignment of stamp on the page. | [optional] [default to null]
11+
**LeftMargin** | **float64** | Gets or sets left margin of stamp. | [optional] [default to null]
12+
**Opacity** | **float64** | 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. | [optional] [default to null]
13+
**RightMargin** | **float64** | Gets or sets right margin of stamp. | [optional] [default to null]
14+
**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. | [optional] [default to null]
15+
**RotateAngle** | **float64** | Gets or sets rotate angle of stamp in degrees. This property allows to set arbitrary rotate angle. | [optional] [default to null]
16+
**TopMargin** | **float64** | Gets or sets top margin of stamp. | [optional] [default to null]
17+
**VerticalAlignment** | [***VerticalAlignment**](VerticalAlignment.md) | Gets or sets vertical alignment of stamp on page. | [optional] [default to null]
18+
**XIndent** | **float64** | Horizontal stamp coordinate, starting from the left. | [optional] [default to null]
19+
**YIndent** | **float64** | Vertical stamp coordinate, starting from the bottom. | [optional] [default to null]
20+
**Zoom** | **float64** | Zooming factor of the stamp. Allows to scale stamp. | [optional] [default to null]
21+
**FileName** | **string** | Gets or sets the file name. | [optional] [default to null]
22+
**Width** | **float64** | Gets or sets image width. Setting this property allos to scal image horizontally. | [optional] [default to null]
23+
**Height** | **float64** | Gets or sets image height. Setting this image allows to scale image vertically. | [optional] [default to null]
24+
25+
[[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]](../image_stamp.go)
26+
27+

0 commit comments

Comments
 (0)