Skip to content

Commit 68c6038

Browse files
Aspose.Slides for C++ 25.9 API Reference
1 parent 0d303ff commit 68c6038

File tree

370 files changed

+3708
-252
lines changed

Some content is hidden

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

370 files changed

+3708
-252
lines changed

content/cpp/english/_index.md

Lines changed: 2 additions & 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.8)
2+
title: Aspose.Slides for C++ API Reference (version 25.9)
33
type: docs
44
weight: 12
55
url: /
@@ -83,6 +83,7 @@ is_root: true
8383
- [System::Text](./system.text/)
8484
- [System::Text::RegularExpressions](./system.text.regularexpressions/)
8585
- [System::Threading](./system.threading/)
86+
- [System::Threading::Tasks](./system.threading.tasks/)
8687
- [System::Timers](./system.timers/)
8788
- [System::Web](./system.web/)
8889
- [System::Web::Services](./system.web.services/)

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ class ChartTitle : public Aspose::Slides::Charts::IChartTitle,
2727
| static **bool** [Equals](../../system/object/equals/)(**float** const\&, **float** const\&) | Emulates C#-style floating point comparison where two NaNs are considered equal even though according to IEC 60559:1989 NaN is not equal to any value, including NaN. |
2828
| static **bool** [Equals](../../system/object/equals/)(**double** const\&, **double** const\&) | Emulates C#-style floating point comparison where two NaNs are considered equal even though according to IEC 60559:1989 NaN is not equal to any value, including NaN. |
2929
| virtual **bool** [FastCast](../../system/object/fastcast/)(const Details::FastRttiBase\&, void **) const | For internal purposes only. |
30+
| **float** [get_ActualHeight](./get_actualheight/)() override | Specifies actual height of the chart element. Call method [IChart::ValidateChartLayout](../ichart/validatechartlayout/) before to get actual values. Read **float**. |
31+
| **float** [get_ActualWidth](./get_actualwidth/)() override | Specifies actual width of the chart element. Call method [IChart::ValidateChartLayout](../ichart/validatechartlayout/) before to get actual values. Read **float**. |
32+
| **float** [get_ActualX](./get_actualx/)() override | Specifies actual x location (left) of the chart element relative to the left top corner of the chart. Call method [IChart::ValidateChartLayout](../ichart/validatechartlayout/) before to get actual values. Read **float**. |
33+
| **float** [get_ActualY](./get_actualy/)() override | Specifies actual top of the chart element relative to the left top corner of the chart. Call method [IChart::ValidateChartLayout](../ichart/validatechartlayout/) before to get actual values. Read **float**. |
3034
| **float** [get_Bottom](./get_bottom/)() override | Bottom. Read-only **float**. |
3135
| [System::SharedPtr](../../system/sharedptr/)\<[IChart](../ichart/)\> [get_Chart](./get_chart/)() override | Returns the parent chart. Read-only [IChart](../ichart/). |
3236
| [System::SharedPtr](../../system/sharedptr/)\<[IFormat](../iformat/)\> [get_Format](./get_format/)() override | Returns the fill, line, effect styles of a title. Read-only [IFormat](../iformat/). |

content/cpp/english/aspose.slides.charts/charttitle/addtextframeforoverriding/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: AddTextFrameForOverriding()
33
second_title: Aspose.Slides for C++ API Reference
44
description: Initialize TextFrameForOverriding with the text in paramener \"text\". If TextFrameForOverriding is already initialized then simply changes its text.
55
type: docs
6-
weight: 209
6+
weight: 261
77
url: /aspose.slides.charts/charttitle/addtextframeforoverriding/
88
---
99
## ChartTitle::AddTextFrameForOverriding(System::String) method
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
title: get_ActualHeight()
3+
second_title: Aspose.Slides for C++ API Reference
4+
description: "Specifies actual height of the chart element. Call method IChart::ValidateChartLayout before to get actual values. Read float."
5+
type: docs
6+
weight: 235
7+
url: /aspose.slides.charts/charttitle/get_actualheight/
8+
---
9+
## ChartTitle::get_ActualHeight() method
10+
11+
12+
Specifies actual height of the chart element. Call method [IChart::ValidateChartLayout](../../ichart/validatechartlayout/) before to get actual values. Read **float**.
13+
14+
```cpp
15+
float Aspose::Slides::Charts::ChartTitle::get_ActualHeight() override
16+
```
17+
18+
## See Also
19+
20+
* Class [ChartTitle](../)
21+
* Namespace [Aspose::Slides::Charts](../../)
22+
* Library [Aspose.Slides](../../../)
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
title: get_ActualWidth()
3+
second_title: Aspose.Slides for C++ API Reference
4+
description: "Specifies actual width of the chart element. Call method IChart::ValidateChartLayout before to get actual values. Read float."
5+
type: docs
6+
weight: 222
7+
url: /aspose.slides.charts/charttitle/get_actualwidth/
8+
---
9+
## ChartTitle::get_ActualWidth() method
10+
11+
12+
Specifies actual width of the chart element. Call method [IChart::ValidateChartLayout](../../ichart/validatechartlayout/) before to get actual values. Read **float**.
13+
14+
```cpp
15+
float Aspose::Slides::Charts::ChartTitle::get_ActualWidth() override
16+
```
17+
18+
## See Also
19+
20+
* Class [ChartTitle](../)
21+
* Namespace [Aspose::Slides::Charts](../../)
22+
* Library [Aspose.Slides](../../../)
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
title: get_ActualX()
3+
second_title: Aspose.Slides for C++ API Reference
4+
description: "Specifies actual x location (left) of the chart element relative to the left top corner of the chart. Call method IChart::ValidateChartLayout before to get actual values. Read float."
5+
type: docs
6+
weight: 196
7+
url: /aspose.slides.charts/charttitle/get_actualx/
8+
---
9+
## ChartTitle::get_ActualX() method
10+
11+
12+
Specifies actual x location (left) of the chart element relative to the left top corner of the chart. Call method [IChart::ValidateChartLayout](../../ichart/validatechartlayout/) before to get actual values. Read **float**.
13+
14+
```cpp
15+
float Aspose::Slides::Charts::ChartTitle::get_ActualX() override
16+
```
17+
18+
## See Also
19+
20+
* Class [ChartTitle](../)
21+
* Namespace [Aspose::Slides::Charts](../../)
22+
* Library [Aspose.Slides](../../../)
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
title: get_ActualY()
3+
second_title: Aspose.Slides for C++ API Reference
4+
description: "Specifies actual top of the chart element relative to the left top corner of the chart. Call method IChart::ValidateChartLayout before to get actual values. Read float."
5+
type: docs
6+
weight: 209
7+
url: /aspose.slides.charts/charttitle/get_actualy/
8+
---
9+
## ChartTitle::get_ActualY() method
10+
11+
12+
Specifies actual top of the chart element relative to the left top corner of the chart. Call method [IChart::ValidateChartLayout](../../ichart/validatechartlayout/) before to get actual values. Read **float**.
13+
14+
```cpp
15+
float Aspose::Slides::Charts::ChartTitle::get_ActualY() override
16+
```
17+
18+
## See Also
19+
20+
* Class [ChartTitle](../)
21+
* Namespace [Aspose::Slides::Charts](../../)
22+
* Library [Aspose.Slides](../../../)

content/cpp/english/aspose.slides.charts/charttitle/get_chart/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: get_Chart()
33
second_title: Aspose.Slides for C++ API Reference
44
description: Returns the parent chart. Read-only IChart.
55
type: docs
6-
weight: 196
6+
weight: 248
77
url: /aspose.slides.charts/charttitle/get_chart/
88
---
99
## ChartTitle::get_Chart() method

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

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ Represents chart title properties.
1313

1414
```cpp
1515
class IChartTitle : public Aspose::Slides::Charts::ILayoutable,
16-
public Aspose::Slides::Charts::IOverridableText
16+
public Aspose::Slides::Charts::IOverridableText,
17+
public Aspose::Slides::Charts::IActualLayout
1718
```
1819
1920
## Methods
@@ -27,6 +28,10 @@ class IChartTitle : public Aspose::Slides::Charts::ILayoutable,
2728
| static **bool** [Equals](../../system/object/equals/)(**float** const\&, **float** const\&) | Emulates C#-style floating point comparison where two NaNs are considered equal even though according to IEC 60559:1989 NaN is not equal to any value, including NaN. |
2829
| static **bool** [Equals](../../system/object/equals/)(**double** const\&, **double** const\&) | Emulates C#-style floating point comparison where two NaNs are considered equal even though according to IEC 60559:1989 NaN is not equal to any value, including NaN. |
2930
| virtual **bool** [FastCast](../../system/object/fastcast/)(const Details::FastRttiBase\&, void **) const | For internal purposes only. |
31+
| virtual **float** [get_ActualHeight](../iactuallayout/get_actualheight/)() | Specifies actual height of the chart element. Call method [IChart::ValidateChartLayout](../ichart/validatechartlayout/) before to get actual values. Read **float**. |
32+
| virtual **float** [get_ActualWidth](../iactuallayout/get_actualwidth/)() | Specifies actual width of the chart element. Call method [IChart::ValidateChartLayout](../ichart/validatechartlayout/) before to get actual values. Read **float**. |
33+
| virtual **float** [get_ActualX](../iactuallayout/get_actualx/)() | Specifies actual x location (left) of the chart element relative to the left top corner of the chart. Call method [IChart::ValidateChartLayout](../ichart/validatechartlayout/) before to get actual values. Read **float**. |
34+
| virtual **float** [get_ActualY](../iactuallayout/get_actualy/)() | Specifies actual top of the chart element relative to the left top corner of the chart. Call method [IChart::ValidateChartLayout](../ichart/validatechartlayout/) before to get actual values. Read **float**. |
3035
| virtual **float** [get_Bottom](../ilayoutable/get_bottom/)() | Gets the top of the chart element as a fraction of the height of the chart. Read-only **float**. |
3136
| virtual [System::SharedPtr](../../system/sharedptr/)\<[IChart](../ichart/)\> [get_Chart](../ichartcomponent/get_chart/)() | Returns the chart. Read-only [IChart](../ichart/). |
3237
| virtual [System::SharedPtr](../../system/sharedptr/)\<[IFormat](../iformat/)\> [get_Format](./get_format/)() | Returns the fill, line, effect styles of a title. Read-only [IFormat](../iformat/). |
@@ -74,5 +79,6 @@ class IChartTitle : public Aspose::Slides::Charts::ILayoutable,
7479
7580
* Class [ILayoutable](../ilayoutable/)
7681
* Class [IOverridableText](../ioverridabletext/)
82+
* Class [IActualLayout](../iactuallayout/)
7783
* Namespace [Aspose::Slides::Charts](../)
7884
* Library [Aspose.Slides](../../)

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

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ Represents chart's legend properties.
1313

1414
```cpp
1515
class ILegend : public Aspose::Slides::Charts::ILayoutable,
16-
public Aspose::Slides::Charts::IFormattedTextContainer
16+
public Aspose::Slides::Charts::IFormattedTextContainer,
17+
public Aspose::Slides::Charts::IActualLayout
1718
```
1819
1920
## Methods
@@ -26,6 +27,10 @@ class ILegend : public Aspose::Slides::Charts::ILayoutable,
2627
| static **bool** [Equals](../../system/object/equals/)(**float** const\&, **float** const\&) | Emulates C#-style floating point comparison where two NaNs are considered equal even though according to IEC 60559:1989 NaN is not equal to any value, including NaN. |
2728
| static **bool** [Equals](../../system/object/equals/)(**double** const\&, **double** const\&) | Emulates C#-style floating point comparison where two NaNs are considered equal even though according to IEC 60559:1989 NaN is not equal to any value, including NaN. |
2829
| virtual **bool** [FastCast](../../system/object/fastcast/)(const Details::FastRttiBase\&, void **) const | For internal purposes only. |
30+
| virtual **float** [get_ActualHeight](../iactuallayout/get_actualheight/)() | Specifies actual height of the chart element. Call method [IChart::ValidateChartLayout](../ichart/validatechartlayout/) before to get actual values. Read **float**. |
31+
| virtual **float** [get_ActualWidth](../iactuallayout/get_actualwidth/)() | Specifies actual width of the chart element. Call method [IChart::ValidateChartLayout](../ichart/validatechartlayout/) before to get actual values. Read **float**. |
32+
| virtual **float** [get_ActualX](../iactuallayout/get_actualx/)() | Specifies actual x location (left) of the chart element relative to the left top corner of the chart. Call method [IChart::ValidateChartLayout](../ichart/validatechartlayout/) before to get actual values. Read **float**. |
33+
| virtual **float** [get_ActualY](../iactuallayout/get_actualy/)() | Specifies actual top of the chart element relative to the left top corner of the chart. Call method [IChart::ValidateChartLayout](../ichart/validatechartlayout/) before to get actual values. Read **float**. |
2934
| virtual **float** [get_Bottom](../ilayoutable/get_bottom/)() | Gets the top of the chart element as a fraction of the height of the chart. Read-only **float**. |
3035
| virtual [System::SharedPtr](../../system/sharedptr/)\<[IChart](../ichart/)\> [get_Chart](../ichartcomponent/get_chart/)() | Returns the chart. Read-only [IChart](../ichart/). |
3136
| virtual [System::SharedPtr](../../system/sharedptr/)\<[ILegendEntryCollection](../ilegendentrycollection/)\> [get_Entries](./get_entries/)() | Gets legend entries. Read-only [ILegendEntryCollection](../ilegendentrycollection/). |
@@ -76,5 +81,6 @@ class ILegend : public Aspose::Slides::Charts::ILayoutable,
7681
7782
* Class [ILayoutable](../ilayoutable/)
7883
* Class [IFormattedTextContainer](../iformattedtextcontainer/)
84+
* Class [IActualLayout](../iactuallayout/)
7985
* Namespace [Aspose::Slides::Charts](../)
8086
* Library [Aspose.Slides](../../)

0 commit comments

Comments
 (0)