Skip to content

Commit 953c453

Browse files
Aspose.Slides for C++ 25.4 API Reference
1 parent 1410d1d commit 953c453

File tree

55 files changed

+159
-49
lines changed

Some content is hidden

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

55 files changed

+159
-49
lines changed

content/cpp/english/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Aspose.Slides for C++ API Reference (version 25.2)
2+
title: Aspose.Slides for C++ API Reference (version 25.3)
33
type: docs
44
weight: 12
55
url: /

content/cpp/english/aspose.slides/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -503,6 +503,7 @@ url: /aspose.slides/
503503
| [PVICachingMode](./pvicachingmode/) | Represents different levels of caching for PVI effective objects. |
504504
| [RectangleAlignment](./rectanglealignment/) | Defines 2-dimension allignment. |
505505
| [SchemeColor](./schemecolor/) | Represents colors in a color scheme. |
506+
| [ShapeAdjustmentType](./shapeadjustmenttype/) | Specifies different types of shape adjustment values. |
506507
| [ShapeElementFillSource](./shapeelementfillsource/) | Represents how shape element should be filled. |
507508
| [ShapeElementStrokeSource](./shapeelementstrokesource/) | Represents how shape element should be drawn. |
508509
| [ShapesAlignmentType](./shapesalignmenttype/) | Defines a way to change the placement of selected shapes on the slide. |

content/cpp/english/aspose.slides/adjustvalue/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ class AdjustValue : public Aspose::Slides::IAdjustValue
2828
| **float** [get_AngleValue](./get_anglevalue/)() override | Returns value, interpreting it as angle in degrees. Read **float**. |
2929
| [System::String](../../system/string/) [get_Name](./get_name/)() override | Returns a name of this adjustment value. Read-only [System::String](../../system/string/). |
3030
| **int64_t** [get_RawValue](./get_rawvalue/)() override | Returns ajustment value \"as is\". Read **int64_t**. |
31+
| [ShapeAdjustmentType](../shapeadjustmenttype/) [get_Type](./get_type/)() override | Returns the type of the shape adjustment. Read-only [ShapeAdjustmentType](../shapeadjustmenttype/). |
3132
| Detail::SmartPtrCounter * [GetCounter](../../system/object/getcounter/)() | Gets reference counter data structure associated with the object. |
3233
| virtual **int32_t** [GetHashCode](../../system/object/gethashcode/)() const | Analog of C# [Object.GetHashCode()](../../system/object/gethashcode/) method. Enables hashing of custom objects. |
3334
| virtual const [TypeInfo](../../system/typeinfo/)\& [GetType](../../system/object/gettype/)() const | Gets actual type of object. Analog of C# [System.Object.GetType()](../../system/object/gettype/) call. |
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
title: get_Type()
3+
second_title: Aspose.Slides for C++ API Reference
4+
description: Returns the type of the shape adjustment. Read-only ShapeAdjustmentType.
5+
type: docs
6+
weight: 66
7+
url: /aspose.slides/adjustvalue/get_type/
8+
---
9+
## AdjustValue::get_Type() method
10+
11+
12+
Returns the type of the shape adjustment. Read-only [ShapeAdjustmentType](../../shapeadjustmenttype/).
13+
14+
```cpp
15+
ShapeAdjustmentType Aspose::Slides::AdjustValue::get_Type() override
16+
```
17+
18+
## See Also
19+
20+
* Enum [ShapeAdjustmentType](../../shapeadjustmenttype/)
21+
* Class [AdjustValue](../)
22+
* Namespace [Aspose::Slides](../../)
23+
* Library [Aspose.Slides](../../../)

content/cpp/english/aspose.slides/iadjustvalue/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ class IAdjustValue : public virtual System::Object
2828
| virtual **float** [get_AngleValue](./get_anglevalue/)() | Returns value, interpreting it as angle in degrees. Read **float**. |
2929
| virtual [System::String](../../system/string/) [get_Name](./get_name/)() | Returns a name of this adjustment value. Read-only [System::String](../../system/string/). |
3030
| virtual **int64_t** [get_RawValue](./get_rawvalue/)() | Returns ajustment value \"as is\". Read **int64_t**. |
31+
| virtual [ShapeAdjustmentType](../shapeadjustmenttype/) [get_Type](./get_type/)() | Returns the type of the shape adjustment. Read-only [ShapeAdjustmentType](../shapeadjustmenttype/). |
3132
| Detail::SmartPtrCounter * [GetCounter](../../system/object/getcounter/)() | Gets reference counter data structure associated with the object. |
3233
| virtual **int32_t** [GetHashCode](../../system/object/gethashcode/)() const | Analog of C# [Object.GetHashCode()](../../system/object/gethashcode/) method. Enables hashing of custom objects. |
3334
| virtual const [TypeInfo](../../system/typeinfo/)\& [GetType](../../system/object/gettype/)() const | Gets actual type of object. Analog of C# [System.Object.GetType()](../../system/object/gettype/) call. |
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
title: get_Type()
3+
second_title: Aspose.Slides for C++ API Reference
4+
description: Returns the type of the shape adjustment. Read-only ShapeAdjustmentType.
5+
type: docs
6+
weight: 66
7+
url: /aspose.slides/iadjustvalue/get_type/
8+
---
9+
## IAdjustValue::get_Type() method
10+
11+
12+
Returns the type of the shape adjustment. Read-only [ShapeAdjustmentType](../../shapeadjustmenttype/).
13+
14+
```cpp
15+
virtual ShapeAdjustmentType Aspose::Slides::IAdjustValue::get_Type()=0
16+
```
17+
18+
## See Also
19+
20+
* Enum [ShapeAdjustmentType](../../shapeadjustmenttype/)
21+
* Class [IAdjustValue](../)
22+
* Namespace [Aspose::Slides](../../)
23+
* Library [Aspose.Slides](../../../)

content/cpp/english/aspose.slides/imageformat/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: ImageFormat
33
second_title: Aspose.Slides for C++ API Reference
44
description: Represents the file format of the image.
55
type: docs
6-
weight: 6605
6+
weight: 6618
77
url: /aspose.slides/imageformat/
88
---
99
## ImageFormat enum

content/cpp/english/aspose.slides/invalidpasswordexception/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: InvalidPasswordException
33
second_title: Aspose.Slides for C++ API Reference
44
description:
55
type: docs
6-
weight: 6683
6+
weight: 6696
77
url: /aspose.slides/invalidpasswordexception/
88
---
99
## InvalidPasswordException typedef

content/cpp/english/aspose.slides/loadformat/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: LoadFormat
33
second_title: Aspose.Slides for C++ API Reference
44
description: Indicates the format of the document that is to be loaded.
55
type: docs
6-
weight: 6618
6+
weight: 6631
77
url: /aspose.slides/loadformat/
88
---
99
## LoadFormat enum

content/cpp/english/aspose.slides/loadingstreambehavior/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: LoadingStreamBehavior
33
second_title: Aspose.Slides for C++ API Reference
44
description: "The System::IO::Stream passed to a method is considered as a Binary Large Object (BLOB) (see IBlobManagementOptions description). Values of this enumeration identify how the System::IO::Stream should be treated when it passed to the method. Depending on the requirements, different decisions could be made to provide the most efficient behavior."
55
type: docs
6-
weight: 6631
6+
weight: 6644
77
url: /aspose.slides/loadingstreambehavior/
88
---
99
## LoadingStreamBehavior enum

0 commit comments

Comments
 (0)