add method
Contents
[
Hide
]add(self, name, value)
Creates a new custom document property of the PropertyType.String data type.
Returns
The newly created property object.
def add(self, name, value):
...
| Parameter | Type | Description |
|---|---|---|
| name | System.String | The name of the property. |
| value | System.String | The value of the property. |
add(self, name, value)
Creates a new custom document property of the PropertyType.Number data type.
Returns
The newly created property object.
def add(self, name, value):
...
| Parameter | Type | Description |
|---|---|---|
| name | System.String | The name of the property. |
| value | int | The value of the property. |
add(self, name, value)
Creates a new custom document property of the PropertyType.DateTime data type.
Returns
The newly created property object.
def add(self, name, value):
...
| Parameter | Type | Description |
|---|---|---|
| name | System.String | The name of the property. |
| value | System.DateTime | The value of the property. |
add(self, name, value)
Creates a new custom document property of the PropertyType.Boolean data type.
Returns
The newly created property object.
def add(self, name, value):
...
| Parameter | Type | Description |
|---|---|---|
| name | System.String | The name of the property. |
| value | bool | The value of the property. |
add(self, name, value)
Creates a new custom document property of the PropertyType.Float data type.
Returns
The newly created property object.
def add(self, name, value):
...
| Parameter | Type | Description |
|---|---|---|
| name | System.String | The name of the property. |
| value | float | The value of the property. |
See Also
- module
aspose.cells.properties - class
CustomDocumentPropertyCollection - class
DocumentProperty