add method
Contents
[
Hide
]add(name, value)
Creates a new custom document property of the PropertyType.STRING data type.
def add(self, name: str, value: str):
...
| Parameter | Type | Description |
|---|---|---|
| name | str | The name of the property. |
| value | str | The value of the property. |
Returns
The newly created property object.
add(name, value)
Creates a new custom document property of the PropertyType.NUMBER data type.
def add(self, name: str, value: int):
...
| Parameter | Type | Description |
|---|---|---|
| name | str | The name of the property. |
| value | int | The value of the property. |
Returns
The newly created property object.
add(name, value)
Creates a new custom document property of the PropertyType.DATE_TIME data type.
def add(self, name: str, value: datetime.datetime):
...
| Parameter | Type | Description |
|---|---|---|
| name | str | The name of the property. |
| value | datetime.datetime | The value of the property. |
Returns
The newly created property object.
add(name, value)
Creates a new custom document property of the PropertyType.BOOLEAN data type.
def add(self, name: str, value: bool):
...
| Parameter | Type | Description |
|---|---|---|
| name | str | The name of the property. |
| value | bool | The value of the property. |
Returns
The newly created property object.
add(name, value)
Creates a new custom document property of the PropertyType.DOUBLE data type.
def add(self, name: str, value: float):
...
| Parameter | Type | Description |
|---|---|---|
| name | str | The name of the property. |
| value | float | The value of the property. |
Returns
The newly created property object.
Examples
Shows how to work with a document’s custom properties.
import datetime
import aspose.words as aw
from api_example_base import ApiExampleBase, ARTIFACTS_DIR
doc = aw.Document()
properties = doc.custom_document_properties
self.assertEqual(0, properties.count)
# Custom document properties are key-value pairs that we can add to the document.
properties.add(name='Authorized', value=True)
properties.add(name='Authorized By', value='John Doe')
properties.add(name='Authorized Date', value=datetime.date.today())
properties.add(name='Authorized Revision', value=doc.built_in_document_properties.revision_number)
properties.add(name='Authorized Amount', value=123.45)
# The collection sorts the custom properties in alphabetic order.
self.assertEqual(1, properties.index_of('Authorized Amount'))
self.assertEqual(5, properties.count)
# Print every custom property in the document.
for prop in properties:
print(f'Name: "{prop.name}"\n\tType: "{prop.type}"\n\tValue: "{prop.value}"')
# Display the value of a custom property using a DOCPROPERTY field.
builder = aw.DocumentBuilder(doc=doc)
field = builder.insert_field(field_code=' DOCPROPERTY "Authorized By"').as_field_doc_property()
field.update()
self.assertEqual('John Doe', field.result)
# We can find these custom properties in Microsoft Word via "File" -> "Properties" > "Advanced Properties" > "Custom".
doc.save(file_name=ARTIFACTS_DIR + 'DocumentProperties.DocumentPropertyCollection.docx')
# Below are three ways or removing custom properties from a document.
# 1 - Remove by index:
properties.remove_at(1)
self.assertFalse(properties.contains('Authorized Amount'))
self.assertEqual(4, properties.count)
# 2 - Remove by name:
properties.remove('Authorized Revision')
self.assertFalse(properties.contains('Authorized Revision'))
self.assertEqual(3, properties.count)
# 3 - Empty the entire collection at once:
properties.clear()
self.assertEqual(0, properties.count)
See Also
- module aspose.words.properties
- class CustomDocumentProperties