[]
Gets a document variable by the case-insensitive name.
public Variable this[string name] { get; }
Public ReadOnly Default Property Item(name As String) As Variable
| Type | Name | Description |
|---|---|---|
| string | name | The case-insensitive name of the variable. |
| Type | Description |
|---|---|
| Variable | A Variable with the specified name. |
Gets a document variable at the specified index.
public Variable this[int index] { get; }
Public ReadOnly Default Property Item(index As Integer) As Variable
| Type | Name | Description |
|---|---|---|
| int | index | Zero-based index of the document variable. |
| Type | Description |
|---|---|
| Variable | A Variable with the specified index. |