Skip to content

Commit d84916b

Browse files
Aspose.Slides for Python via .NET 25.4 API Reference
1 parent a01227d commit d84916b

File tree

9 files changed

+154
-1
lines changed

9 files changed

+154
-1
lines changed

content/python-net/english/aspose.slides/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -494,6 +494,7 @@ Contains classes for work with Microsoft PowerPoint presentations without utiliz
494494
| [`RectangleAlignment`](/slides/python-net/aspose.slides/rectanglealignment/) | Defines 2-dimension allignment. |
495495
| [`ResourceLoadingAction`](/slides/python-net/aspose.slides/resourceloadingaction/) | Specifies the mode of external resource loading. |
496496
| [`SchemeColor`](/slides/python-net/aspose.slides/schemecolor/) | Represents colors in a color scheme. |
497+
| [`ShapeAdjustmentType`](/slides/python-net/aspose.slides/shapeadjustmenttype/) | Specifies different types of shape adjustment values. |
497498
| [`ShapeElementFillSource`](/slides/python-net/aspose.slides/shapeelementfillsource/) | Represents how shape element should be filled. |
498499
| [`ShapeElementStrokeSource`](/slides/python-net/aspose.slides/shapeelementstrokesource/) | Represents how shape element should be drawn. |
499500
| [`ShapeThumbnailBounds`](/slides/python-net/aspose.slides/shapethumbnailbounds/) | Enumeration of types of shape thumbnail bounds. |

content/python-net/english/aspose.slides/adjustvalue/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ The AdjustValue type exposes the following members:
2121
| [`raw_value`](/slides/python-net/aspose.slides/adjustvalue/raw_value/) | Returns or sets ajustment value "as is".<br/> Read/write **int**. |
2222
| [`angle_value`](/slides/python-net/aspose.slides/adjustvalue/angle_value/) | Returns or sets value, interpreting it as angle in degrees.<br/> Read/write **float**. |
2323
| [`name`](/slides/python-net/aspose.slides/adjustvalue/name/) | Returns a name of this adjustment value.<br/> Read-only **str**. |
24+
| [`type`](/slides/python-net/aspose.slides/adjustvalue/type/) | Returns the type of the shape adjustment.<br/> Read-only [`ShapeAdjustmentType`](/slides/python-net/aspose.slides/shapeadjustmenttype). |
2425

2526

2627
### See Also
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
title: type property
3+
second_title: Aspose.Slides for Python via .NET API Reference
4+
description:
5+
type: docs
6+
url: /aspose.slides/adjustvalue/type/
7+
weight: 40
8+
---
9+
10+
11+
## type property
12+
Returns the type of the shape adjustment.
13+
Read-only [`ShapeAdjustmentType`](/slides/python-net/aspose.slides/shapeadjustmenttype).
14+
15+
### Definition:
16+
```python
17+
@property
18+
def type(self):
19+
...
20+
```
21+
22+
23+
### See Also
24+
* class [`AdjustValue`](/slides/python-net/aspose.slides/adjustvalue)
25+
* enumeration [`ShapeAdjustmentType`](/slides/python-net/aspose.slides/shapeadjustmenttype)
26+
* module [`aspose.slides`](/slides/python-net/aspose.slides)
27+
* library [`Aspose.Slides`](/slides/python-net)
28+

content/python-net/english/aspose.slides/iadjustvalue/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ The IAdjustValue type exposes the following members:
2121
| [`raw_value`](/slides/python-net/aspose.slides/iadjustvalue/raw_value/) | Returns or sets ajustment value "as is".<br/> Read/write **int**. |
2222
| [`angle_value`](/slides/python-net/aspose.slides/iadjustvalue/angle_value/) | Returns or sets value, interpreting it as angle in degrees.<br/> Read/write **float**. |
2323
| [`name`](/slides/python-net/aspose.slides/iadjustvalue/name/) | Returns a name of this adjustment value.<br/> Read-only **str**. |
24+
| [`type`](/slides/python-net/aspose.slides/iadjustvalue/type/) | Returns the type of the shape adjustment.<br/> Read-only [`ShapeAdjustmentType`](/slides/python-net/aspose.slides/shapeadjustmenttype). |
2425

2526

2627
### See Also
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
title: type property
3+
second_title: Aspose.Slides for Python via .NET API Reference
4+
description:
5+
type: docs
6+
url: /aspose.slides/iadjustvalue/type/
7+
weight: 40
8+
---
9+
10+
11+
## type property
12+
Returns the type of the shape adjustment.
13+
Read-only [`ShapeAdjustmentType`](/slides/python-net/aspose.slides/shapeadjustmenttype).
14+
15+
### Definition:
16+
```python
17+
@property
18+
def type(self):
19+
...
20+
```
21+
22+
23+
### See Also
24+
* class [`IAdjustValue`](/slides/python-net/aspose.slides/iadjustvalue)
25+
* enumeration [`ShapeAdjustmentType`](/slides/python-net/aspose.slides/shapeadjustmenttype)
26+
* module [`aspose.slides`](/slides/python-net/aspose.slides)
27+
* library [`Aspose.Slides`](/slides/python-net)
28+

content/python-net/english/aspose.slides/metered/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ The Metered type exposes the following members:
2626
| [`set_metered_key`](/slides/python-net/aspose.slides/metered/set_metered_key/#str-str) | Sets metered public and private key |
2727
| [`get_consumption_quantity`](/slides/python-net/aspose.slides/metered/get_consumption_quantity/#) | Gets consumption file size |
2828
| [`get_consumption_credit`](/slides/python-net/aspose.slides/metered/get_consumption_credit/#) | Gets consumption credit |
29+
| [`is_metered_licensed`](/slides/python-net/aspose.slides/metered/is_metered_licensed/#) | Check whether metered is licensed |
2930

3031

3132
### See Also
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
---
2+
title: is_metered_licensed method
3+
second_title: Aspose.Slides for Python via .NET API Reference
4+
description:
5+
type: docs
6+
url: /aspose.slides/metered/is_metered_licensed/
7+
weight: 40
8+
---
9+
10+
11+
## is_metered_licensed {#}
12+
Check whether metered is licensed
13+
14+
### Returns
15+
16+
True or false
17+
18+
19+
20+
```python
21+
@staticmethod
22+
def is_metered_licensed():
23+
...
24+
```
25+
26+
27+
28+
29+
### See Also
30+
* class [`Metered`](/slides/python-net/aspose.slides/metered)
31+
* module [`aspose.slides`](/slides/python-net/aspose.slides)
32+
* library [`Aspose.Slides`](/slides/python-net)
33+

content/python-net/english/aspose.slides/metered/set_metered_key/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ second_title: Aspose.Slides for Python via .NET API Reference
44
description:
55
type: docs
66
url: /aspose.slides/metered/set_metered_key/
7-
weight: 40
7+
weight: 50
88
---
99

1010

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
---
2+
title: ShapeAdjustmentType enumeration
3+
second_title: Aspose.Slides for Python via .NET API Reference
4+
description:
5+
type: docs
6+
url: /aspose.slides/shapeadjustmenttype/
7+
---
8+
9+
10+
## ShapeAdjustmentType enumeration
11+
12+
Specifies different types of shape adjustment values.
13+
14+
The ShapeAdjustmentType type exposes the following members:
15+
16+
## Fields
17+
18+
| Field | Description |
19+
| :- | :- |
20+
| CUSTOM | Custom type (unknown adjustment) |
21+
| CORNER_SIZE | Controls the size of the corners. |
22+
| LEFT_UP_CORNER | Controls the up left corner. |
23+
| RIGHT_UP_CORNER | Controls the up right corner. |
24+
| UP_CORNERS | Controls the upper corners. |
25+
| DOWN_CORNERS | Controls the down corners. |
26+
| THICKNESS | Controls the thickness of the figure. |
27+
| ARROW_TAIL_THICKNESS | Controls the thickness of the arrow tail. |
28+
| ARROWHEAD_LENGTH | Controls the length of the arrowhead. |
29+
| ARROWHEAD_WIDTH | Controls the width of the arrowhead. |
30+
| RADIUS | Controls the size of the radius of the shape or its part. |
31+
| DEPTH | Controls the depth of the gear teeth or the bevel effect. |
32+
| SHAPE_PART_OFFSET | Controls the offset of one part of the figure relative to another. |
33+
| ANGLE | Controls the angle for figure or its part. |
34+
| START_ANGLE | Start angle for pie and arc shapes. |
35+
| END_ANGLE | End angle for pie and arc shapes. |
36+
| START_POINT_X | Controls the callout start point X position. |
37+
| START_POINT_Y | Controls the callout start point Y position. |
38+
| CONNECTOR_POINT_1X | Controls the horizontal position of the callout angle adjustment point. |
39+
| CONNECTOR_POINT_1Y | Controls the vertical position of the callout angle adjustment point. |
40+
| CONNECTOR_POINT_2X | Controls the horizontal position of the callout angle adjustment point. |
41+
| CONNECTOR_POINT_2Y | Controls the vertical position of the callout angle adjustment point. |
42+
| CONNECTOR_BEND_POSITION_X | Controls the horizontal position of the bend in the connector. |
43+
| CONNECTOR_BEND_POSITION_Y | Controls the vertical position of the bend in the connector. |
44+
| ATTACH_Y | Controls the vertical attachment point of the figure. |
45+
| ATTACH_X | Controls the horizontal attachment point of the figure. |
46+
| CALLOUT_HEIGHT | Controls the vertical size of the callaut. |
47+
| CALLOUT_WIDTH | Controls the horizont size of the callaut. |
48+
| CALLOUT_SIZE | Controls the size of the callaut. |
49+
| CURVATURE | Curvature of a bent, braces, curved arrow or shape. |
50+
| HORIZONTAL_THICKNESS | Controls the horizontal thickness of the corner shape. |
51+
| VERTICAL_THICKNESS | Controls the vertical thickness of the corner shape. |
52+
| VERTICAL_SIZE | Controls the vertical size of the shape. |
53+
| HORIZONTAL_SIZE | Controls the horizontal size of the shape. |
54+
| TOP | Controls the top side of a shape. |
55+
56+
57+
### See Also
58+
* module [`aspose.slides`](/slides/python-net/aspose.slides)
59+
* library [`Aspose.Slides`](/slides/python-net)
60+

0 commit comments

Comments
 (0)