Skip to content

Commit b88aab9

Browse files
Aspose.Slides for C++ 25.4 API Reference
1 parent 15dcf56 commit b88aab9

File tree

59 files changed

+171
-61
lines changed

Some content is hidden

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

59 files changed

+171
-61
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.3)
2+
title: Aspose.Slides for C++ API Reference (version 25.4)
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: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ class AdjustValue : public Aspose::Slides::IAdjustValue
2727
| virtual **bool** [FastCast](../../system/object/fastcast/)(const Details::FastRttiBase\&, void **) const | For internal purposes only. |
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/). |
30-
| **int64_t** [get_RawValue](./get_rawvalue/)() override | Returns ajustment value \"as is\". Read **int64_t**. |
30+
| **int64_t** [get_RawValue](./get_rawvalue/)() override | Returns adjustment 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. |
@@ -44,7 +45,7 @@ class AdjustValue : public Aspose::Slides::IAdjustValue
4445
| **bool** [ReferenceEquals](../../system/object/referenceequals/)([String](../../system/string/) const\&, [String](../../system/string/) const\&) | Specialization of [Object::ReferenceEquals](../../system/object/referenceequals/) for case of strings. |
4546
| int [RemovedSharedRefs](../../system/object/removedsharedrefs/)(int) | Decreases shared reference count by specified value. |
4647
| void [set_AngleValue](./set_anglevalue/)(**float**) override | Sets value, interpreting it as angle in degrees. Write **float**. |
47-
| void [set_RawValue](./set_rawvalue/)(**int64_t**) override | Sets ajustment value \"as is\". Write **int64_t**. |
48+
| void [set_RawValue](./set_rawvalue/)(**int64_t**) override | Sets adjustment value \"as is\". Write **int64_t**. |
4849
| virtual void [SetTemplateWeakPtr](../../system/object/settemplateweakptr/)(**uint32_t**) | Set n'th template argument a weak pointer (rather than shared). Allows switching pointers in containers to weak mode. |
4950
| int [SharedCount](../../system/object/sharedcount/)() const | Gets current value of shared reference counter. |
5051
| [Object](../../system/object/) * [SharedRefAdded](../../system/object/sharedrefadded/)() | Increments shared reference count. Shouldn't be called directly; instead, use smart pointers or ThisProtector. |

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
---
22
title: get_RawValue()
33
second_title: Aspose.Slides for C++ API Reference
4-
description: Returns ajustment value \"as is\". Read int64_t.
4+
description: Returns adjustment value \"as is\". Read int64_t.
55
type: docs
66
weight: 1
77
url: /aspose.slides/adjustvalue/get_rawvalue/
88
---
99
## AdjustValue::get_RawValue() method
1010

1111

12-
Returns ajustment value \"as is\". Read **int64_t**.
12+
Returns adjustment value \"as is\". Read **int64_t**.
1313

1414
```cpp
1515
int64_t Aspose::Slides::AdjustValue::get_RawValue() override
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/adjustvalue/set_rawvalue/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
---
22
title: set_RawValue()
33
second_title: Aspose.Slides for C++ API Reference
4-
description: Sets ajustment value \"as is\". Write int64_t.
4+
description: Sets adjustment value \"as is\". Write int64_t.
55
type: docs
66
weight: 14
77
url: /aspose.slides/adjustvalue/set_rawvalue/
88
---
99
## AdjustValue::set_RawValue(int64_t) method
1010

1111

12-
Sets ajustment value \"as is\". Write **int64_t**.
12+
Sets adjustment value \"as is\". Write **int64_t**.
1313

1414
```cpp
1515
void Aspose::Slides::AdjustValue::set_RawValue(int64_t value) override

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ class IAdjustValue : public virtual System::Object
2727
| virtual **bool** [FastCast](../../system/object/fastcast/)(const Details::FastRttiBase\&, void **) const | For internal purposes only. |
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/). |
30-
| virtual **int64_t** [get_RawValue](./get_rawvalue/)() | Returns ajustment value \"as is\". Read **int64_t**. |
30+
| virtual **int64_t** [get_RawValue](./get_rawvalue/)() | Returns adjustment 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. |
@@ -44,7 +45,7 @@ class IAdjustValue : public virtual System::Object
4445
| **bool** [ReferenceEquals](../../system/object/referenceequals/)([String](../../system/string/) const\&, [String](../../system/string/) const\&) | Specialization of [Object::ReferenceEquals](../../system/object/referenceequals/) for case of strings. |
4546
| int [RemovedSharedRefs](../../system/object/removedsharedrefs/)(int) | Decreases shared reference count by specified value. |
4647
| virtual void [set_AngleValue](./set_anglevalue/)(**float**) | Sets value, interpreting it as angle in degrees. Write **float**. |
47-
| virtual void [set_RawValue](./set_rawvalue/)(**int64_t**) | Sets ajustment value \"as is\". Write **int64_t**. |
48+
| virtual void [set_RawValue](./set_rawvalue/)(**int64_t**) | Sets adjustment value \"as is\". Write **int64_t**. |
4849
| virtual void [SetTemplateWeakPtr](../../system/object/settemplateweakptr/)(**uint32_t**) | Set n'th template argument a weak pointer (rather than shared). Allows switching pointers in containers to weak mode. |
4950
| int [SharedCount](../../system/object/sharedcount/)() const | Gets current value of shared reference counter. |
5051
| [Object](../../system/object/) * [SharedRefAdded](../../system/object/sharedrefadded/)() | Increments shared reference count. Shouldn't be called directly; instead, use smart pointers or ThisProtector. |

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
---
22
title: get_RawValue()
33
second_title: Aspose.Slides for C++ API Reference
4-
description: Returns ajustment value \"as is\". Read int64_t.
4+
description: Returns adjustment value \"as is\". Read int64_t.
55
type: docs
66
weight: 1
77
url: /aspose.slides/iadjustvalue/get_rawvalue/
88
---
99
## IAdjustValue::get_RawValue() method
1010

1111

12-
Returns ajustment value \"as is\". Read **int64_t**.
12+
Returns adjustment value \"as is\". Read **int64_t**.
1313

1414
```cpp
1515
virtual int64_t Aspose::Slides::IAdjustValue::get_RawValue()=0
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/iadjustvalue/set_rawvalue/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
---
22
title: set_RawValue()
33
second_title: Aspose.Slides for C++ API Reference
4-
description: Sets ajustment value \"as is\". Write int64_t.
4+
description: Sets adjustment value \"as is\". Write int64_t.
55
type: docs
66
weight: 14
77
url: /aspose.slides/iadjustvalue/set_rawvalue/
88
---
99
## IAdjustValue::set_RawValue(int64_t) method
1010

1111

12-
Sets ajustment value \"as is\". Write **int64_t**.
12+
Sets adjustment value \"as is\". Write **int64_t**.
1313

1414
```cpp
1515
virtual void Aspose::Slides::IAdjustValue::set_RawValue(int64_t value)=0

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: PresentationLockingBehavior
33
second_title: Aspose.Slides for C++ API Reference
44
description: "Represents the behavior regarding treating the IPresentation source (file or System::IO::Stream) while loading and working with an instance of IPresentation."
55
type: docs
6-
weight: 6644
6+
weight: 6657
77
url: /aspose.slides/presentationlockingbehavior/
88
---
99
## PresentationLockingBehavior enum

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: ResourceLoadingAction
33
second_title: Aspose.Slides for C++ API Reference
44
description: Specifies the mode of external resource loading.
55
type: docs
6-
weight: 6657
6+
weight: 6670
77
url: /aspose.slides/resourceloadingaction/
88
---
99
## ResourceLoadingAction enum

0 commit comments

Comments
 (0)