Skip to content

Commit a36aeb4

Browse files
authored
Merge pull request #19 from aspose-cells/main
v24.11
2 parents c669457 + 9339072 commit a36aeb4

File tree

1,436 files changed

+5445
-1398
lines changed

Some content is hidden

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

1,436 files changed

+5445
-1398
lines changed

english/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ is_root: true
1313
| :- | :- |
1414
| [`aspose.cells`](/cells/python-net/aspose.cells) | The **Aspose.Cells** namespace provides fundamental and base classes for generating, converting, modifying, rendering and printing Spreadsheets without utilizing Microsoft Excel.<br/>For example, [`Workbook`](/cells/python-net/aspose.cells/workbook) class is the main entry to create or load and then manipulate a spreadsheet file,<br/>[`Cells`](/cells/python-net/aspose.cells/cells) class is the main class to manipulate all data and properties in a sheet, ...etc. |
1515
| [`aspose.cells.charts`](/cells/python-net/aspose.cells.charts) | The **Aspose.Cells.Charts** namespace provides classes that allow to access and drawing charts and sparkline in Microsoft Excel spreadsheets. |
16+
| [`aspose.cells.datamodels`](/cells/python-net/aspose.cells.datamodels) | The **Aspose.Cells.DataModels** namespace provides classes to access and update data models of the workbook. |
1617
| [`aspose.cells.digitalsignatures`](/cells/python-net/aspose.cells.digitalsignatures) | The **Aspose.Cells.DigitalSignatures** namespace provides classes to sign documents and verify signatures. |
1718
| [`aspose.cells.drawing`](/cells/python-net/aspose.cells.drawing) | The **Aspose.Cells.Drawing** namespace provides classes that allow to create and modify drawing shapes, form controls, and more advanced drawing objects. |
1819
| [`aspose.cells.drawing.activexcontrols`](/cells/python-net/aspose.cells.drawing.activexcontrols) | The **Aspose.Cells.Drawing.ActiveXControls** namespace provides classes that allow to draw and access ActiveXControl. |
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
title: aspose.cells.datamodels
3+
second_title: Aspose.Cells for Python via .NET API References
4+
description:
5+
type: docs
6+
weight: 10
7+
url: /aspose.cells.datamodels/
8+
is_root: false
9+
---
10+
11+
The **Aspose.Cells.DataModels** namespace provides classes to access and update data models of the workbook.
12+
13+
### Classes
14+
| Class | Description |
15+
| :- | :- |
16+
| [`DataModel`](/cells/python-net/aspose.cells.datamodels/datamodel) | Represents the data model. |
17+
| [`DataModelRelationship`](/cells/python-net/aspose.cells.datamodels/datamodelrelationship) | Represents a single relationship in the spreadsheet data model. |
18+
| [`DataModelRelationshipCollection`](/cells/python-net/aspose.cells.datamodels/datamodelrelationshipcollection) | Represents the relationships. |
19+
| [`DataModelTable`](/cells/python-net/aspose.cells.datamodels/datamodeltable) | Represents properties of a single table in spreadsheet data model. |
20+
| [`DataModelTableCollection`](/cells/python-net/aspose.cells.datamodels/datamodeltablecollection) | Represents the list of the data model table. |
21+
22+
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
title: DataModel class
3+
second_title: Aspose.Cells for Python via .NET API References
4+
description:
5+
type: docs
6+
weight: 10
7+
url: /aspose.cells.datamodels/datamodel/
8+
is_root: false
9+
---
10+
11+
## DataModel class
12+
13+
Represents the data model.
14+
15+
16+
17+
The DataModel type exposes the following members:
18+
19+
### Properties
20+
| Property | Description |
21+
| :- | :- |
22+
| [relationships](/cells/python-net/aspose.cells.datamodels/datamodel/relationships) | Gets all relationships of the tables in the data model. |
23+
| [tables](/cells/python-net/aspose.cells.datamodels/datamodel/tables) | Gets all tables in the data model. |
24+
25+
26+
27+
### See Also
28+
* module [`aspose.cells.datamodels`](..)
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
title: relationships property
3+
second_title: Aspose.Cells for Python via .NET API References
4+
description:
5+
type: docs
6+
weight: 30
7+
url: /aspose.cells.datamodels/datamodel/relationships/
8+
is_root: false
9+
---
10+
11+
## relationships property
12+
13+
14+
Gets all relationships of the tables in the data model.
15+
### Definition:
16+
```python
17+
@property
18+
def relationships(self):
19+
...
20+
```
21+
22+
### See Also
23+
* module [`aspose.cells.datamodels`](../../)
24+
* class [`DataModel`](/cells/python-net/aspose.cells.datamodels/datamodel)
25+
* class [`DataModelRelationshipCollection`](/cells/python-net/aspose.cells.datamodels/datamodelrelationshipcollection)
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
title: tables property
3+
second_title: Aspose.Cells for Python via .NET API References
4+
description:
5+
type: docs
6+
weight: 40
7+
url: /aspose.cells.datamodels/datamodel/tables/
8+
is_root: false
9+
---
10+
11+
## tables property
12+
13+
14+
Gets all tables in the data model.
15+
### Definition:
16+
```python
17+
@property
18+
def tables(self):
19+
...
20+
```
21+
22+
### See Also
23+
* module [`aspose.cells.datamodels`](../../)
24+
* class [`DataModel`](/cells/python-net/aspose.cells.datamodels/datamodel)
25+
* class [`DataModelTableCollection`](/cells/python-net/aspose.cells.datamodels/datamodeltablecollection)
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
title: DataModelRelationship class
3+
second_title: Aspose.Cells for Python via .NET API References
4+
description:
5+
type: docs
6+
weight: 20
7+
url: /aspose.cells.datamodels/datamodelrelationship/
8+
is_root: false
9+
---
10+
11+
## DataModelRelationship class
12+
13+
Represents a single relationship in the spreadsheet data model.
14+
15+
16+
17+
The DataModelRelationship type exposes the following members:
18+
19+
### Properties
20+
| Property | Description |
21+
| :- | :- |
22+
| [foreign_key_table](/cells/python-net/aspose.cells.datamodels/datamodelrelationship/foreign_key_table) | Gets the name of the foreign key table for this relationship. |
23+
| [primary_key_table](/cells/python-net/aspose.cells.datamodels/datamodelrelationship/primary_key_table) | Gets the name of the primary key table for this relationship. |
24+
| [foreign_key_column](/cells/python-net/aspose.cells.datamodels/datamodelrelationship/foreign_key_column) | Gets the name of the foreign key table column for this relationship. |
25+
| [primary_key_column](/cells/python-net/aspose.cells.datamodels/datamodelrelationship/primary_key_column) | Gets the name of the primary key table column for this relationship. |
26+
27+
28+
29+
### See Also
30+
* module [`aspose.cells.datamodels`](..)
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
title: foreign_key_column property
3+
second_title: Aspose.Cells for Python via .NET API References
4+
description:
5+
type: docs
6+
weight: 30
7+
url: /aspose.cells.datamodels/datamodelrelationship/foreign_key_column/
8+
is_root: false
9+
---
10+
11+
## foreign_key_column property
12+
13+
14+
Gets the name of the foreign key table column for this relationship.
15+
### Definition:
16+
```python
17+
@property
18+
def foreign_key_column(self):
19+
...
20+
```
21+
22+
### See Also
23+
* module [`aspose.cells.datamodels`](../../)
24+
* class [`DataModelRelationship`](/cells/python-net/aspose.cells.datamodels/datamodelrelationship)
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
title: foreign_key_table property
3+
second_title: Aspose.Cells for Python via .NET API References
4+
description:
5+
type: docs
6+
weight: 40
7+
url: /aspose.cells.datamodels/datamodelrelationship/foreign_key_table/
8+
is_root: false
9+
---
10+
11+
## foreign_key_table property
12+
13+
14+
Gets the name of the foreign key table for this relationship.
15+
### Definition:
16+
```python
17+
@property
18+
def foreign_key_table(self):
19+
...
20+
```
21+
22+
### See Also
23+
* module [`aspose.cells.datamodels`](../../)
24+
* class [`DataModelRelationship`](/cells/python-net/aspose.cells.datamodels/datamodelrelationship)
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
title: primary_key_column property
3+
second_title: Aspose.Cells for Python via .NET API References
4+
description:
5+
type: docs
6+
weight: 50
7+
url: /aspose.cells.datamodels/datamodelrelationship/primary_key_column/
8+
is_root: false
9+
---
10+
11+
## primary_key_column property
12+
13+
14+
Gets the name of the primary key table column for this relationship.
15+
### Definition:
16+
```python
17+
@property
18+
def primary_key_column(self):
19+
...
20+
```
21+
22+
### See Also
23+
* module [`aspose.cells.datamodels`](../../)
24+
* class [`DataModelRelationship`](/cells/python-net/aspose.cells.datamodels/datamodelrelationship)
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
title: primary_key_table property
3+
second_title: Aspose.Cells for Python via .NET API References
4+
description:
5+
type: docs
6+
weight: 60
7+
url: /aspose.cells.datamodels/datamodelrelationship/primary_key_table/
8+
is_root: false
9+
---
10+
11+
## primary_key_table property
12+
13+
14+
Gets the name of the primary key table for this relationship.
15+
### Definition:
16+
```python
17+
@property
18+
def primary_key_table(self):
19+
...
20+
```
21+
22+
### See Also
23+
* module [`aspose.cells.datamodels`](../../)
24+
* class [`DataModelRelationship`](/cells/python-net/aspose.cells.datamodels/datamodelrelationship)

0 commit comments

Comments
 (0)