Namespace TallComponents.PDF.Layout
Class NameValuePairCollection<T>
Collection of pairs Name and Value.
Syntax
public class NameValuePairCollection<T>
: Object
,
IEnumerable<NameValuePair<T>>
Properties
Int32 Count
Gets the number of properties.
T Item
Gets of sets the value of a property with a specific name.
Methods
Void Add(String,T)
Adds a custom property name and property value.
Void Clear()
Removes all custom properties from the collection.
Boolean Contains(String)
Determines whether the collection contatins a property with specific name.
IEnumerator<NameValuePair<T>> GetEnumerator()
Returns an enumerator that iterates through the properties.
Boolean Remove(String)
Removes the custom property with the provided name.