Skip to content

Commit d0ee39e

Browse files
Aspose.Slides for Python via .NET 24.6 API Reference
1 parent bf68ab0 commit d0ee39e

File tree

339 files changed

+1936
-275
lines changed

Some content is hidden

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

339 files changed

+1936
-275
lines changed

content/python-net/english/aspose.slides.export.xaml/ixamloptions/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ The IXamlOptions type exposes the following members:
2222
| [`warning_callback`](/slides/python-net/aspose.slides.export.xaml/ixamloptions/warning_callback/) | |
2323
| [`progress_callback`](/slides/python-net/aspose.slides.export.xaml/ixamloptions/progress_callback/) | |
2424
| [`default_regular_font`](/slides/python-net/aspose.slides.export.xaml/ixamloptions/default_regular_font/) | |
25+
| [`gradient_style`](/slides/python-net/aspose.slides.export.xaml/ixamloptions/gradient_style/) | |
2526

2627

2728
### See Also
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
title: gradient_style property
3+
second_title: Aspose.Slides for Python via .NET API Reference
4+
description:
5+
type: docs
6+
url: /aspose.slides.export.xaml/ixamloptions/gradient_style/
7+
weight: 40
8+
---
9+
10+
11+
## gradient_style property
12+
### Definition:
13+
```python
14+
@property
15+
def gradient_style(self):
16+
...
17+
18+
@gradient_style.setter
19+
def gradient_style(self, value):
20+
...
21+
```
22+
23+
24+
### See Also
25+
* class [`IXamlOptions`](/slides/python-net/aspose.slides.export.xaml/ixamloptions)
26+
* module [`aspose.slides.export.xaml`](/slides/python-net/aspose.slides.export.xaml)
27+
* library [`Aspose.Slides`](/slides/python-net)
28+

content/python-net/english/aspose.slides.export.xaml/ixamloptions/output_saver/_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.export.xaml/ixamloptions/output_saver/
7-
weight: 40
7+
weight: 50
88
---
99

1010

content/python-net/english/aspose.slides.export.xaml/ixamloptions/progress_callback/_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.export.xaml/ixamloptions/progress_callback/
7-
weight: 50
7+
weight: 60
88
---
99

1010

content/python-net/english/aspose.slides.export.xaml/ixamloptions/warning_callback/_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.export.xaml/ixamloptions/warning_callback/
7-
weight: 60
7+
weight: 70
88
---
99

1010

content/python-net/english/aspose.slides.export.xaml/xamloptions/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ The XamlOptions type exposes the following members:
2828
| [`warning_callback`](/slides/python-net/aspose.slides.export.xaml/xamloptions/warning_callback/) | Returns of sets an object which receives warnings and decides whether loading process will continue or will be aborted.<br/> Read/write [`IWarningCallback`](/slides/python-net/aspose.slides.warnings/iwarningcallback). |
2929
| [`progress_callback`](/slides/python-net/aspose.slides.export.xaml/xamloptions/progress_callback/) | Represents a callback object for saving progress updates in percentage.<br/> See [`IProgressCallback`](/slides/python-net/aspose.slides/iprogresscallback). |
3030
| [`default_regular_font`](/slides/python-net/aspose.slides.export.xaml/xamloptions/default_regular_font/) | Returns or sets font used in case source font is not found.<br/> Read-write **str**. |
31+
| [`gradient_style`](/slides/python-net/aspose.slides.export.xaml/xamloptions/gradient_style/) | Returns or sets the visual style of the gradient.<br/> Read/write [`GradientStyle`](/slides/python-net/aspose.slides/gradientstyle/). |
3132
| [`export_hidden_slides`](/slides/python-net/aspose.slides.export.xaml/xamloptions/export_hidden_slides/) | Determines whether hidden slides will be exported. |
3233
| [`output_saver`](/slides/python-net/aspose.slides.export.xaml/xamloptions/output_saver/) | Represents an implementation of IOutputSaver interface. |
3334

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
title: gradient_style property
3+
second_title: Aspose.Slides for Python via .NET API Reference
4+
description:
5+
type: docs
6+
url: /aspose.slides.export.xaml/xamloptions/gradient_style/
7+
weight: 50
8+
---
9+
10+
11+
## gradient_style property
12+
Returns or sets the visual style of the gradient.
13+
Read/write [`GradientStyle`](/slides/python-net/aspose.slides/gradientstyle/).
14+
15+
### Definition:
16+
```python
17+
@property
18+
def gradient_style(self):
19+
...
20+
21+
@gradient_style.setter
22+
def gradient_style(self, value):
23+
...
24+
```
25+
26+
27+
### See Also
28+
* class [`XamlOptions`](/slides/python-net/aspose.slides.export.xaml/xamloptions)
29+
* module [`aspose.slides.export.xaml`](/slides/python-net/aspose.slides.export.xaml)
30+
* library [`Aspose.Slides`](/slides/python-net)
31+

content/python-net/english/aspose.slides.export.xaml/xamloptions/output_saver/_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.export.xaml/xamloptions/output_saver/
7-
weight: 50
7+
weight: 60
88
---
99

1010

content/python-net/english/aspose.slides.export.xaml/xamloptions/progress_callback/_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.export.xaml/xamloptions/progress_callback/
7-
weight: 60
7+
weight: 70
88
---
99

1010

content/python-net/english/aspose.slides.export.xaml/xamloptions/warning_callback/_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.export.xaml/xamloptions/warning_callback/
7-
weight: 70
7+
weight: 80
88
---
99

1010

0 commit comments

Comments
 (0)