Item

VariableCollection indexer (1 of 2)

Gets or a sets a document variable by the case-insensitive name. null values are not allowed as a right hand side of the assignment and will be replaced by empty string.

public string this[string name] { get; set; }

See Also


VariableCollection indexer (2 of 2)

Gets or sets a document variable at the specified index. null values are not allowed as a right hand side of the assignment and will be replaced by empty string.

public string this[int index] { get; set; }
ParameterDescription
indexZero-based index of the document variable.

See Also