Skip to content

Commit 09daf00

Browse files
authored
Merge pull request #25 from aspose-cells/main
python net 25.5 apis
2 parents 9e3734a + 1f7a221 commit 09daf00

File tree

502 files changed

+1932
-438
lines changed

Some content is hidden

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

502 files changed

+1932
-438
lines changed

english/aspose.cells.charts/ticklabels/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ The TickLabels type exposes the following members:
2828
| [number](/cells/python-net/aspose.cells.charts/ticklabels/number) | Represents the format number for the TickLabels object. |
2929
| [number_format_linked](/cells/python-net/aspose.cells.charts/ticklabels/number_format_linked) | True if the number format is linked to the cells <br/>(so that the number format changes in the labels when it changes in the cells). |
3030
| [display_number_format](/cells/python-net/aspose.cells.charts/ticklabels/display_number_format) | Gets and sets the display number format of tick labels. |
31-
| [offset](/cells/python-net/aspose.cells.charts/ticklabels/offset) | Gets and sets the distance between the axis labels and the axis line. |
31+
| [offset](/cells/python-net/aspose.cells.charts/ticklabels/offset) | Gets and sets the distance of labels from the category axis. <br/>Only for category (x) axis. |
3232
| [text_direction](/cells/python-net/aspose.cells.charts/ticklabels/text_direction) | Represents text reading order. |
3333
| [reading_order](/cells/python-net/aspose.cells.charts/ticklabels/reading_order) | Represents text reading order. |
3434
| [direction_type](/cells/python-net/aspose.cells.charts/ticklabels/direction_type) | Gets and sets the direction of text. |

english/aspose.cells.charts/ticklabels/offset/_index.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,14 @@ is_root: false
1111
## offset property
1212

1313

14-
Gets and sets the distance between the axis labels and the axis line.
14+
Gets and sets the distance of labels from the category axis.
15+
Only for category (x) axis.
1516

1617
### Remarks
1718

1819

1920
The default distance is 100 percent, which represents the default spacing between the axis labels and the axis line.
20-
The value can be an integer percentage from 0 through 1000, relative to the axis labels font size.
21+
The value can be an integer percentage from 0 through 1000, relative to the axis label''s font size.
2122
### Definition:
2223
```python
2324
@property

english/aspose.cells.datamodels/datamodeltablecollection/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ The DataModelTableCollection type exposes the following members:
3232
| [`last_index_of(self, item)`](/cells/python-net/aspose.cells.datamodels/datamodeltablecollection/last_index_of/#aspose.cells.datamodels.datamodeltable) | Searches for the specified object and returns the zero-based index of the last occurrence within the entire array list. |
3333
| [`last_index_of(self, item, index)`](/cells/python-net/aspose.cells.datamodels/datamodeltablecollection/last_index_of/#aspose.cells.datamodels.datamodeltable-int) | Searches for the specified object and returns the zero-based index of the last occurrence within the range of elements in the array list that extends from the first element to the specified index. |
3434
| [`last_index_of(self, item, index, count)`](/cells/python-net/aspose.cells.datamodels/datamodeltablecollection/last_index_of/#aspose.cells.datamodels.datamodeltable-int-int) | Searches for the specified object and returns the zero-based index of the last occurrence within the range of elements in the array list that contains the specified number of elements and ends at the specified index. |
35+
| [`get(self, name)`](/cells/python-net/aspose.cells.datamodels/datamodeltablecollection/get/#str) | Gets the data model table by the name. |
3536
| [`binary_search(self, item)`](/cells/python-net/aspose.cells.datamodels/datamodeltablecollection/binary_search/#aspose.cells.datamodels.datamodeltable) | Searches the entire sorted array list for an element using the default comparer and returns the zero-based index of the element. |
3637

3738

english/aspose.cells.datamodels/datamodeltablecollection/capacity/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: capacity property
33
second_title: Aspose.Cells for Python via .NET API References
44
description:
55
type: docs
6-
weight: 70
6+
weight: 80
77
url: /aspose.cells.datamodels/datamodeltablecollection/capacity/
88
is_root: false
99
---
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
---
2+
title: get method
3+
second_title: Aspose.Cells for Python via .NET API References
4+
description:
5+
type: docs
6+
weight: 40
7+
url: /aspose.cells.datamodels/datamodeltablecollection/get/
8+
is_root: false
9+
---
10+
11+
## get(self, name) {#str}
12+
13+
Gets the data model table by the name.
14+
15+
16+
### Returns
17+
18+
19+
20+
21+
22+
```python
23+
24+
def get(self, name):
25+
...
26+
```
27+
28+
29+
| Parameter | Type | Description |
30+
| :- | :- | :- |
31+
| name | str | The name of data model table. |
32+
33+
34+
35+
### See Also
36+
* module [`aspose.cells.datamodels`](../../)
37+
* class [`DataModelTableCollection`](/cells/python-net/aspose.cells.datamodels/datamodeltablecollection)

english/aspose.cells.datamodels/datamodeltablecollection/index_of/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: index_of method
33
second_title: Aspose.Cells for Python via .NET API References
44
description:
55
type: docs
6-
weight: 40
6+
weight: 50
77
url: /aspose.cells.datamodels/datamodeltablecollection/index_of/
88
is_root: false
99
---

english/aspose.cells.datamodels/datamodeltablecollection/last_index_of/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: last_index_of method
33
second_title: Aspose.Cells for Python via .NET API References
44
description:
55
type: docs
6-
weight: 50
6+
weight: 60
77
url: /aspose.cells.datamodels/datamodeltablecollection/last_index_of/
88
is_root: false
99
---

english/aspose.cells.drawing/picturecollection/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ The PictureCollection type exposes the following members:
3838
| [`last_index_of(self, item)`](/cells/python-net/aspose.cells.drawing/picturecollection/last_index_of/#aspose.cells.drawing.picture) | Searches for the specified object and returns the zero-based index of the last occurrence within the entire array list. |
3939
| [`last_index_of(self, item, index)`](/cells/python-net/aspose.cells.drawing/picturecollection/last_index_of/#aspose.cells.drawing.picture-int) | Searches for the specified object and returns the zero-based index of the last occurrence within the range of elements in the array list that extends from the first element to the specified index. |
4040
| [`last_index_of(self, item, index, count)`](/cells/python-net/aspose.cells.drawing/picturecollection/last_index_of/#aspose.cells.drawing.picture-int-int) | Searches for the specified object and returns the zero-based index of the last occurrence within the range of elements in the array list that contains the specified number of elements and ends at the specified index. |
41+
| [`camera(self, row, column, range)`](/cells/python-net/aspose.cells.drawing/picturecollection/camera/#int-int-str) | Takes a photo of the range. |
4142
| [`binary_search(self, item)`](/cells/python-net/aspose.cells.drawing/picturecollection/binary_search/#aspose.cells.drawing.picture) | Searches the entire sorted array list for an element using the default comparer and returns the zero-based index of the element. |
4243

4344

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
---
2+
title: camera method
3+
second_title: Aspose.Cells for Python via .NET API References
4+
description:
5+
type: docs
6+
weight: 40
7+
url: /aspose.cells.drawing/picturecollection/camera/
8+
is_root: false
9+
---
10+
11+
## camera(self, row, column, range) {#int-int-str}
12+
13+
Takes a photo of the range.
14+
15+
16+
### Returns
17+
18+
19+
20+
21+
22+
```python
23+
24+
def camera(self, row, column, range):
25+
...
26+
```
27+
28+
29+
| Parameter | Type | Description |
30+
| :- | :- | :- |
31+
| row | int | The row index of this picture. |
32+
| column | int | The column index of this picture. |
33+
| range | str | The area that requires photography |
34+
35+
36+
37+
### See Also
38+
* module [`aspose.cells.drawing`](../../)
39+
* class [`PictureCollection`](/cells/python-net/aspose.cells.drawing/picturecollection)

english/aspose.cells.drawing/picturecollection/capacity/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: capacity property
33
second_title: Aspose.Cells for Python via .NET API References
44
description:
55
type: docs
6-
weight: 80
6+
weight: 90
77
url: /aspose.cells.drawing/picturecollection/capacity/
88
is_root: false
99
---

0 commit comments

Comments
 (0)