Stores document variables as case-insensitive name-value pairs for use with merge fields and custom document metadata.
Definition
Namespace:Telerik.Windows.Documents.Flow.Model.Collections
Assembly:Telerik.Windows.Documents.Flow.dll
Syntax:
public class DocumentVariableCollection : IEnumerable<KeyValuePair<string, string>>, IEnumerable
Inheritance: objectDocumentVariableCollection
Implements:
Methods
Returns an enumerator that iterates through all document variable name-value pairs in the collection.
public IEnumerator<KeyValuePair<string, string>> GetEnumerator()
IEnumerator<KeyValuePair<string, string>>
A IEnumerator<T> that can be used to iterate through the collection.
Implements:
Properties
Gets the number of document variables currently stored in the collection.
public int Count { get; }
The count.
Gets or sets the value of the document variable with the specified name using case-insensitive matching, throwing if the name does not exist on get.
public string this[string name] { get; set; }
The document variable name