[]
Creates a new IDocumentProperty and adds it to the list of custom document properties that are available for the current IWorkbook.
IDocumentProperty Add(string name, string value)
Function Add(name As String, value As String) As IDocumentProperty
| Type | Name | Description |
|---|---|---|
| string | name | The new IDocumentProperty name. |
| string | value | The value of the property. |
| Type | Description |
|---|---|
| IDocumentProperty | The new IDocumentProperty. |
Creates a new IDocumentProperty and adds it to the list of custom document properties that are available for the current IWorkbook.
IDocumentProperty Add(string name, int value)
Function Add(name As String, value As Integer) As IDocumentProperty
| Type | Name | Description |
|---|---|---|
| string | name | The new IDocumentProperty name. |
| int | value | The value of the property. |
| Type | Description |
|---|---|
| IDocumentProperty | The new IDocumentProperty. |
Creates a new IDocumentProperty and adds it to the list of custom document properties that are available for the current IWorkbook.
IDocumentProperty Add(string name, DateTime value)
Function Add(name As String, value As Date) As IDocumentProperty
| Type | Name | Description |
|---|---|---|
| string | name | The new IDocumentProperty name. |
| DateTime | value | The value of the property. |
| Type | Description |
|---|---|
| IDocumentProperty | The new IDocumentProperty. |
Creates a new IDocumentProperty and adds it to the list of custom document properties that are available for the current IWorkbook.
IDocumentProperty Add(string name, bool value)
Function Add(name As String, value As Boolean) As IDocumentProperty
| Type | Name | Description |
|---|---|---|
| string | name | The new IDocumentProperty name. |
| bool | value | The value of the property. |
| Type | Description |
|---|---|
| IDocumentProperty | The new IDocumentProperty. |
Creates a new IDocumentProperty and adds it to the list of custom document properties that are available for the current IWorkbook.
IDocumentProperty Add(string name, double value)
Function Add(name As String, value As Double) As IDocumentProperty
| Type | Name | Description |
|---|---|---|
| string | name | The new IDocumentProperty name. |
| double | value | The value of the property. |
| Type | Description |
|---|---|
| IDocumentProperty | The new IDocumentProperty. |