Skip to content

Commit 41f7dc9

Browse files
Aspose.Slides for Python via .NET 24.8 API Reference
1 parent 81b745d commit 41f7dc9

File tree

86 files changed

+715
-214
lines changed

Some content is hidden

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

86 files changed

+715
-214
lines changed

content/python-net/english/aspose.slides.animation/behaviorcollection/contains/_index.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,7 @@ Determines whether the **System.Collections.Generic.ICollection`1** contains a s
1313

1414
### Returns
1515

16-
true if `
17-
item`
18-
is found in the **System.Collections.Generic.ICollection`1**; otherwise, false.
16+
true if `item` is found in the **System.Collections.Generic.ICollection`1**; otherwise, false.
1917

2018

2119

content/python-net/english/aspose.slides.animation/behaviorcollection/copy_to/_index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ def copy_to(self, array, array_index):
2121
| Parameter | Type | Description |
2222
| :- | :- | :- |
2323
| array | **List[IBehavior]** | The one-dimensional **System.Array** that is the destination of the elements copied from **System.Collections.Generic.ICollection`1**. The **System.Array** must have zero-based indexing. |
24-
| array_index | **int** | The zero-based index in `<br/><br/>array`<br/><br/> at which copying begins. |
24+
| array_index | **int** | The zero-based index in `array` at which copying begins. |
2525

2626
### Exceptions
2727

2828
| Exception | Description |
2929
| :- | :- |
30-
| **RuntimeError(Proxy error(ArgumentNullException))** | `<br/>array`<br/> is null. |
31-
| **RuntimeError(Proxy error(ArgumentOutOfRangeException))** | `<br/>array_index`<br/> is less than 0. |
32-
| **RuntimeError(Proxy error(ArgumentException))** | The number of elements in the source **System.Collections.Generic.ICollection`1** is greater than the available space from `<br/>array_index`<br/> to the end of the destination `<br/>array`<br/>. |
30+
| **RuntimeError(Proxy error(ArgumentNullException))** | `array` is null. |
31+
| **RuntimeError(Proxy error(ArgumentOutOfRangeException))** | `array_index` is less than 0. |
32+
| **RuntimeError(Proxy error(ArgumentException))** | The number of elements in the source **System.Collections.Generic.ICollection`1** is greater than the available space from `array_index` to the end of the destination `array`. |
3333

3434

3535

content/python-net/english/aspose.slides.animation/behaviorcollection/index_of/_index.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,7 @@ Determines the index of a specific item in the **System.Collections.Generic.ILis
1313

1414
### Returns
1515

16-
The index of `
17-
item`
18-
if found in the list; otherwise, -1.
16+
The index of `item` if found in the list; otherwise, -1.
1917

2018

2119

content/python-net/english/aspose.slides.animation/ibehaviorcollection/contains/_index.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,7 @@ Determines whether the **System.Collections.Generic.ICollection`1** contains a s
1313

1414
### Returns
1515

16-
true if `
17-
item`
18-
is found in the **System.Collections.Generic.ICollection`1**; otherwise, false.
16+
true if `item` is found in the **System.Collections.Generic.ICollection`1**; otherwise, false.
1917

2018

2119

content/python-net/english/aspose.slides.animation/ibehaviorcollection/index_of/_index.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,7 @@ Determines the index of a specific item in the **System.Collections.Generic.ILis
1313

1414
### Returns
1515

16-
The index of `
17-
item`
18-
if found in the list; otherwise, -1.
16+
The index of `item` if found in the list; otherwise, -1.
1917

2018

2119

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Returns the series data point by index (its serial number in this collection).
6969
| [`add_data_point_for_bubble_series`](/slides/python-net/aspose.slides.charts/chartdatapointcollection/add_data_point_for_bubble_series/#str-float-float) | Creates the new data point and adds it to the end of collection.<br/> Applicable for series which chartType is one of Bubble subtypes (see also **Aspose.Slides.Charts.ChartTypeCharacterizer.IsChartTypeBubble(Aspose.Slides.Chart** method). |
7070
| [`add_data_point_for_surface_series`](/slides/python-net/aspose.slides.charts/chartdatapointcollection/add_data_point_for_surface_series/#ichartdatacell) | Creates the new data point and adds it to the end of collection.<br/> Applicable for series which chartType is one of Surface subtypes (see also **Aspose.Slides.Charts.ChartTypeCharacterizer.IsChartTypeSurface(Aspose.Slides.Chart** method). |
7171
| [`add_data_point_for_surface_series`](/slides/python-net/aspose.slides.charts/chartdatapointcollection/add_data_point_for_surface_series/#float) | Creates the new data point and adds it to the end of collection.<br/> Applicable for series which chartType is one of Surface subtypes (see also **Aspose.Slides.Charts.ChartTypeCharacterizer.IsChartTypeSurface(Aspose.Slides.Chart** method). |
72-
| [`get_or_create_data_point_by_idx`](/slides/python-net/aspose.slides.charts/chartdatapointcollection/get_or_create_data_point_by_idx/#int) | If collection already contains data point with index `<br/>index`<br/> then returns this data point.<br/> If collection doesn't contains data point with index `<br/>index`<br/>==N<br/> (when number of data points in this collection is less or equal then N)<br/> then adds deficient data points and returns last (which has requested index).<br/> For example, collection indexes are {0, 1, 2}, and requested index is 5.<br/> Then method adds deficient data points: {0, 1, 2, 3, 4, 5}. And returns data point with index 5. |
72+
| [`get_or_create_data_point_by_idx`](/slides/python-net/aspose.slides.charts/chartdatapointcollection/get_or_create_data_point_by_idx/#int) | If collection already contains data point with index `index` then returns this data point.<br/> If collection doesn't contains data point with index `index`==N<br/> (when number of data points in this collection is less or equal then N)<br/> then adds deficient data points and returns last (which has requested index).<br/> For example, collection indexes are {0, 1, 2}, and requested index is 5.<br/> Then method adds deficient data points: {0, 1, 2, 3, 4, 5}. And returns data point with index 5. |
7373
| [`add_data_point_for_sunburst_series`](/slides/python-net/aspose.slides.charts/chartdatapointcollection/add_data_point_for_sunburst_series/#ichartdatacell) | Creates the new data point and adds it to the end of collection.<br/> Applicable for series which chart type is Sunburst. |
7474
| [`add_data_point_for_treemap_series`](/slides/python-net/aspose.slides.charts/chartdatapointcollection/add_data_point_for_treemap_series/#ichartdatacell) | Creates the new data point and adds it to the end of collection.<br/> Applicable for series which chart type is Treemap. |
7575
| [`add_data_point_for_box_and_whisker_series`](/slides/python-net/aspose.slides.charts/chartdatapointcollection/add_data_point_for_box_and_whisker_series/#ichartdatacell) | Creates the new data point and adds it to the end of collection.<br/> Applicable for series which chart type is BoxAndWhisker. |

content/python-net/english/aspose.slides.charts/chartdatapointcollection/get_or_create_data_point_by_idx/_index.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,8 @@ weight: 190
99

1010

1111
## get_or_create_data_point_by_idx {#int}
12-
If collection already contains data point with index `
13-
index`
14-
then returns this data point.
15-
If collection doesn't contains data point with index `
16-
index`
17-
==N
12+
If collection already contains data point with index `index` then returns this data point.
13+
If collection doesn't contains data point with index `index`==N
1814
(when number of data points in this collection is less or equal then N)
1915
then adds deficient data points and returns last (which has requested index).
2016
For example, collection indexes are {0, 1, 2}, and requested index is 5.

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ The ChartTypeCharacterizer type exposes the following members:
1818
| Method | Description |
1919
| :- | :- |
2020
| [`is_bar_3d_chart`](/slides/python-net/aspose.slides.charts/charttypecharacterizer/is_bar_3d_chart/#charttype) | Return true if chartType is one of bar3DChart subtypes (3D columns or bars). |
21-
| [`is_2d_chart`](/slides/python-net/aspose.slides.charts/charttypecharacterizer/is_2d_chart/#charttype) | Return true if `<br/>chart_type`<br/> is one of 2D chart types. |
22-
| [`is_3d_chart`](/slides/python-net/aspose.slides.charts/charttypecharacterizer/is_3d_chart/#charttype) | Return true if `<br/>chart_type`<br/> is one of 3D chart types. |
21+
| [`is_2d_chart`](/slides/python-net/aspose.slides.charts/charttypecharacterizer/is_2d_chart/#charttype) | Return true if `chart_type` is one of 2D chart types. |
22+
| [`is_3d_chart`](/slides/python-net/aspose.slides.charts/charttypecharacterizer/is_3d_chart/#charttype) | Return true if `chart_type` is one of 3D chart types. |
2323
| [`is_chart_type_column`](/slides/python-net/aspose.slides.charts/charttypecharacterizer/is_chart_type_column/#charttype) | Return true if chartType is one of Column subtypes.<br/> Subtypes set corresponds to the appropriate set in PowerPoint (see "Change Chart Type" dialog in PowerPoint):<br/> [`ChartType.CLUSTERED_COLUMN`](/slides/python-net/aspose.slides.charts/charttype/CLUSTERED_COLUMN),<br/> [`ChartType.CLUSTERED_COLUMN_3D`](/slides/python-net/aspose.slides.charts/charttype/CLUSTERED_COLUMN_3D),<br/> [`ChartType.CLUSTERED_CONE`](/slides/python-net/aspose.slides.charts/charttype/CLUSTERED_CONE),<br/> [`ChartType.CLUSTERED_CYLINDER`](/slides/python-net/aspose.slides.charts/charttype/CLUSTERED_CYLINDER),<br/> [`ChartType.CLUSTERED_PYRAMID`](/slides/python-net/aspose.slides.charts/charttype/CLUSTERED_PYRAMID),<br/> [`ChartType.PERCENTS_STACKED_COLUMN`](/slides/python-net/aspose.slides.charts/charttype/PERCENTS_STACKED_COLUMN),<br/> [`ChartType.PERCENTS_STACKED_COLUMN_3D`](/slides/python-net/aspose.slides.charts/charttype/PERCENTS_STACKED_COLUMN_3D),<br/> [`ChartType.PERCENTS_STACKED_CONE`](/slides/python-net/aspose.slides.charts/charttype/PERCENTS_STACKED_CONE),<br/> [`ChartType.PERCENTS_STACKED_CYLINDER`](/slides/python-net/aspose.slides.charts/charttype/PERCENTS_STACKED_CYLINDER),<br/> [`ChartType.PERCENTS_STACKED_PYRAMID`](/slides/python-net/aspose.slides.charts/charttype/PERCENTS_STACKED_PYRAMID),<br/> [`ChartType.STACKED_COLUMN`](/slides/python-net/aspose.slides.charts/charttype/STACKED_COLUMN),<br/> [`ChartType.STACKED_COLUMN_3D`](/slides/python-net/aspose.slides.charts/charttype/STACKED_COLUMN_3D),<br/> [`ChartType.STACKED_CONE`](/slides/python-net/aspose.slides.charts/charttype/STACKED_CONE),<br/> [`ChartType.STACKED_CYLINDER`](/slides/python-net/aspose.slides.charts/charttype/STACKED_CYLINDER),<br/> [`ChartType.STACKED_PYRAMID`](/slides/python-net/aspose.slides.charts/charttype/STACKED_PYRAMID),<br/> [`ChartType.COLUMN_3D`](/slides/python-net/aspose.slides.charts/charttype/COLUMN_3D),<br/> [`ChartType.CYLINDER_3D`](/slides/python-net/aspose.slides.charts/charttype/CYLINDER_3D),<br/> [`ChartType.CONE_3D`](/slides/python-net/aspose.slides.charts/charttype/CONE_3D),<br/> [`ChartType.PYRAMID_3D`](/slides/python-net/aspose.slides.charts/charttype/PYRAMID_3D). |
2424
| [`is_chart_type_line`](/slides/python-net/aspose.slides.charts/charttypecharacterizer/is_chart_type_line/#charttype) | Return true if chartType is one of Line subtypes.<br/> Subtypes set corresponds to the appropriate set in PowerPoint (see "Change Chart Type" dialog in PowerPoint):<br/> [`ChartType.LINE`](/slides/python-net/aspose.slides.charts/charttype/LINE),<br/> [`ChartType.LINE_WITH_MARKERS`](/slides/python-net/aspose.slides.charts/charttype/LINE_WITH_MARKERS),<br/> [`ChartType.PERCENTS_STACKED_LINE`](/slides/python-net/aspose.slides.charts/charttype/PERCENTS_STACKED_LINE),<br/> [`ChartType.PERCENTS_STACKED_LINE_WITH_MARKERS`](/slides/python-net/aspose.slides.charts/charttype/PERCENTS_STACKED_LINE_WITH_MARKERS),<br/> [`ChartType.STACKED_LINE`](/slides/python-net/aspose.slides.charts/charttype/STACKED_LINE),<br/> [`ChartType.STACKED_LINE_WITH_MARKERS`](/slides/python-net/aspose.slides.charts/charttype/STACKED_LINE_WITH_MARKERS),<br/> [`ChartType.LINE_3D`](/slides/python-net/aspose.slides.charts/charttype/LINE_3D). |
2525
| [`is_chart_type_pie`](/slides/python-net/aspose.slides.charts/charttypecharacterizer/is_chart_type_pie/#charttype) | Return true if chartType is one of Pie subtypes.<br/> Subtypes set corresponds to the appropriate set in PowerPoint (see "Change Chart Type" dialog in PowerPoint):<br/> [`ChartType.BAR_OF_PIE`](/slides/python-net/aspose.slides.charts/charttype/BAR_OF_PIE),<br/> [`ChartType.EXPLODED_PIE`](/slides/python-net/aspose.slides.charts/charttype/EXPLODED_PIE),<br/> [`ChartType.EXPLODED_PIE_3D`](/slides/python-net/aspose.slides.charts/charttype/EXPLODED_PIE_3D),<br/> [`ChartType.PIE`](/slides/python-net/aspose.slides.charts/charttype/PIE),<br/> [`ChartType.PIE_3D`](/slides/python-net/aspose.slides.charts/charttype/PIE_3D),<br/> [`ChartType.PIE_OF_PIE`](/slides/python-net/aspose.slides.charts/charttype/PIE_OF_PIE). |

content/python-net/english/aspose.slides.charts/charttypecharacterizer/is_2d_chart/_index.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,7 @@ weight: 20
99

1010

1111
## is_2d_chart {#charttype}
12-
Return true if `
13-
chart_type`
14-
is one of 2D chart types.
12+
Return true if `chart_type` is one of 2D chart types.
1513

1614

1715
```python

content/python-net/english/aspose.slides.charts/charttypecharacterizer/is_3d_chart/_index.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,7 @@ weight: 30
99

1010

1111
## is_3d_chart {#charttype}
12-
Return true if `
13-
chart_type`
14-
is one of 3D chart types.
12+
Return true if `chart_type` is one of 3D chart types.
1513

1614

1715
```python

0 commit comments

Comments
 (0)