Skip to content

Commit dc59c86

Browse files
author
yevgen-nykytenko
committed
Update content Mon 12/01/2025 3:21:14.45
1 parent 92f59ae commit dc59c86

7,666 files changed

Lines changed: 33508 additions & 13636 deletions

File tree

Some content is hidden

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

english/python-net/_index.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,9 @@ title: GroupDocs.Metadata for Python via .NET
33
second_title: GroupDocs.Metadata for Python via .NET API References
44
description:
55
type: docs
6+
weight: 10
67
url: /python-net/
78
is_root: true
8-
version: 25.4
9-
weight: 40
109
---
1110

1211
### Modules

english/python-net/groupdocs.metadata.common/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ title: groupdocs.metadata.common
33
second_title: GroupDocs.Metadata for Python via .NET API References
44
description:
55
type: docs
6+
weight: 10
67
url: /python-net/groupdocs.metadata.common/
78
is_root: false
8-
weight: 10
99
---
1010

1111
The namespace contains base classes, utility classes and interfaces used across all formats and metadata standards.

english/python-net/groupdocs.metadata.common/byteorder/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ title: ByteOrder enumeration
33
second_title: GroupDocs.Metadata for Python via .NET API References
44
description:
55
type: docs
6+
weight: 180
67
url: /python-net/groupdocs.metadata.common/byteorder/
78
is_root: false
8-
weight: 180
99
---
1010

1111
## ByteOrder enumeration

english/python-net/groupdocs.metadata.common/custompackage/_index.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ title: CustomPackage class
33
second_title: GroupDocs.Metadata for Python via .NET API References
44
description:
55
type: docs
6+
weight: 10
67
url: /python-net/groupdocs.metadata.common/custompackage/
78
is_root: false
8-
weight: 10
99
---
1010

1111
## CustomPackage class
@@ -33,13 +33,13 @@ The CustomPackage type exposes the following members:
3333
### Methods
3434
| Method | Description |
3535
| :- | :- |
36-
| [contains](/metadata/python-net/groupdocs.metadata.common/custompackage/contains/#System.String) | Determines whether the package contains a metadata property with the specified name. |
37-
| [find_properties](/metadata/python-net/groupdocs.metadata.common/custompackage/find_properties/#groupdocs.metadata.search.Specification) | Finds the metadata properties satisfying a specification. <br/>The search is recursive so it affects all nested packages as well. |
38-
| [update_properties](/metadata/python-net/groupdocs.metadata.common/custompackage/update_properties/#groupdocs.metadata.search.Specification-groupdocs.metadata.common.PropertyValue) | Updates known metadata properties satisfying a specification.<br/>The operation is recursive so it affects all nested packages as well. |
39-
| [remove_properties](/metadata/python-net/groupdocs.metadata.common/custompackage/remove_properties/#groupdocs.metadata.search.Specification) | Removes metadata properties satisfying a specification. |
40-
| [add_properties](/metadata/python-net/groupdocs.metadata.common/custompackage/add_properties/#groupdocs.metadata.search.Specification-groupdocs.metadata.common.PropertyValue) | Adds known metadata properties satisfying the specification.<br/>The operation is recursive so it affects all nested packages as well. |
41-
| [set_properties](/metadata/python-net/groupdocs.metadata.common/custompackage/set_properties/#groupdocs.metadata.search.Specification-groupdocs.metadata.common.PropertyValue) | Sets known metadata properties satisfying the specification.<br/>The operation is recursive so it affects all nested packages as well.<br/>This method is a combination of [`MetadataPackage.add_properties`](/metadata/python-net/groupdocs.metadata.common/metadatapackage/add_properties) and [`MetadataPackage.update_properties`](/metadata/python-net/groupdocs.metadata.common/metadatapackage/update_properties). <br/>If an existing property satisfies the specification its value is updated. <br/>If there is a known property missing in the package that satisfies the specification it is added to the package. |
42-
| [sanitize](/metadata/python-net/groupdocs.metadata.common/custompackage/sanitize/#) | Removes writable metadata properties from the package.<br/>The operation is recursive so it affects all nested packages as well. |
36+
| [`contains(self, property_name)`](/metadata/python-net/groupdocs.metadata.common/custompackage/contains/#system.string) | Determines whether the package contains a metadata property with the specified name. |
37+
| [`find_properties(self, specification)`](/metadata/python-net/groupdocs.metadata.common/custompackage/find_properties/#groupdocs.metadata.search.specification) | Finds the metadata properties satisfying a specification. <br/>The search is recursive so it affects all nested packages as well. |
38+
| [`update_properties(self, specification, value)`](/metadata/python-net/groupdocs.metadata.common/custompackage/update_properties/#groupdocs.metadata.search.specification-groupdocs.metadata.common.propertyvalue) | Updates known metadata properties satisfying a specification.<br/>The operation is recursive so it affects all nested packages as well. |
39+
| [`remove_properties(self, specification)`](/metadata/python-net/groupdocs.metadata.common/custompackage/remove_properties/#groupdocs.metadata.search.specification) | Removes metadata properties satisfying a specification. |
40+
| [`add_properties(self, specification, value)`](/metadata/python-net/groupdocs.metadata.common/custompackage/add_properties/#groupdocs.metadata.search.specification-groupdocs.metadata.common.propertyvalue) | Adds known metadata properties satisfying the specification.<br/>The operation is recursive so it affects all nested packages as well. |
41+
| [`set_properties(self, specification, value)`](/metadata/python-net/groupdocs.metadata.common/custompackage/set_properties/#groupdocs.metadata.search.specification-groupdocs.metadata.common.propertyvalue) | Sets known metadata properties satisfying the specification.<br/>The operation is recursive so it affects all nested packages as well.<br/>This method is a combination of [`MetadataPackage.add_properties`](/metadata/python-net/groupdocs.metadata.common/metadatapackage/add_properties) and [`MetadataPackage.update_properties`](/metadata/python-net/groupdocs.metadata.common/metadatapackage/update_properties). <br/>If an existing property satisfies the specification its value is updated. <br/>If there is a known property missing in the package that satisfies the specification it is added to the package. |
42+
| [`sanitize(self)`](/metadata/python-net/groupdocs.metadata.common/custompackage/sanitize/#) | Removes writable metadata properties from the package.<br/>The operation is recursive so it affects all nested packages as well. |
4343

4444

4545

english/python-net/groupdocs.metadata.common/custompackage/add_properties/_index.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ title: add_properties method
33
second_title: GroupDocs.Metadata for Python via .NET API References
44
description:
55
type: docs
6+
weight: 20
67
url: /python-net/groupdocs.metadata.common/custompackage/add_properties/
78
is_root: false
8-
weight: 20
99
---
1010

11-
## add_properties {#groupdocs.metadata.search.Specification-groupdocs.metadata.common.PropertyValue}
11+
## add_properties(self, specification, value) {#groupdocs.metadata.search.Specification-groupdocs.metadata.common.PropertyValue}
1212

1313
Adds known metadata properties satisfying the specification.
1414
The operation is recursive so it affects all nested packages as well.
@@ -21,6 +21,7 @@ The number of affected properties.
2121

2222

2323
```python
24+
2425
def add_properties(self, specification, value):
2526
...
2627
```

english/python-net/groupdocs.metadata.common/custompackage/contains/_index.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ title: contains method
33
second_title: GroupDocs.Metadata for Python via .NET API References
44
description:
55
type: docs
6+
weight: 30
67
url: /python-net/groupdocs.metadata.common/custompackage/contains/
78
is_root: false
8-
weight: 30
99
---
1010

11-
## contains {#System.String}
11+
## contains(self, property_name) {#System.String}
1212

1313
Determines whether the package contains a metadata property with the specified name.
1414

@@ -20,6 +20,7 @@ True if the package contains a property with the specified name; otherwise, fals
2020

2121

2222
```python
23+
2324
def contains(self, property_name):
2425
...
2526
```

english/python-net/groupdocs.metadata.common/custompackage/count/_index.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,21 @@ title: count property
33
second_title: GroupDocs.Metadata for Python via .NET API References
44
description:
55
type: docs
6+
weight: 100
67
url: /python-net/groupdocs.metadata.common/custompackage/count/
78
is_root: false
8-
weight: 100
99
---
1010

1111
## count property
1212

1313

1414
Gets the number of metadata properties.
15+
### Definition:
16+
```python
17+
@property
18+
def count(self):
19+
...
20+
```
1521

1622
### See Also
1723
* module [`groupdocs.metadata.common`](../../)

english/python-net/groupdocs.metadata.common/custompackage/find_properties/_index.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ title: find_properties method
33
second_title: GroupDocs.Metadata for Python via .NET API References
44
description:
55
type: docs
6+
weight: 40
67
url: /python-net/groupdocs.metadata.common/custompackage/find_properties/
78
is_root: false
8-
weight: 40
99
---
1010

11-
## find_properties {#groupdocs.metadata.search.Specification}
11+
## find_properties(self, specification) {#groupdocs.metadata.search.Specification}
1212

1313
Finds the metadata properties satisfying a specification.
1414
The search is recursive so it affects all nested packages as well.
@@ -21,6 +21,7 @@ A collection that contains properties from the package that satisfy the conditio
2121

2222

2323
```python
24+
2425
def find_properties(self, specification):
2526
...
2627
```

english/python-net/groupdocs.metadata.common/custompackage/keys/_index.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,21 @@ title: keys property
33
second_title: GroupDocs.Metadata for Python via .NET API References
44
description:
55
type: docs
6+
weight: 110
67
url: /python-net/groupdocs.metadata.common/custompackage/keys/
78
is_root: false
8-
weight: 110
99
---
1010

1111
## keys property
1212

1313

1414
Gets a collection of the metadata property names.
15+
### Definition:
16+
```python
17+
@property
18+
def keys(self):
19+
...
20+
```
1521

1622
### See Also
1723
* module [`groupdocs.metadata.common`](../../)

english/python-net/groupdocs.metadata.common/custompackage/metadata_type/_index.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,26 @@ title: metadata_type property
33
second_title: GroupDocs.Metadata for Python via .NET API References
44
description:
55
type: docs
6+
weight: 120
67
url: /python-net/groupdocs.metadata.common/custompackage/metadata_type/
78
is_root: false
8-
weight: 120
99
---
1010

1111
## metadata_type property
1212

1313

1414
Gets the metadata type.
15+
### Definition:
16+
```python
17+
@property
18+
def metadata_type(self):
19+
...
20+
@metadata_type.setter
21+
def metadata_type(self, value):
22+
...
23+
```
1524

1625
### See Also
1726
* module [`groupdocs.metadata.common`](../../)
1827
* class [`CustomPackage`](/metadata/python-net/groupdocs.metadata.common/custompackage)
28+
* class [`MetadataType`](/metadata/python-net/groupdocs.metadata.common/metadatatype)

0 commit comments

Comments
 (0)