Skip to main content
All docs
V25.2
  • PresentationDictionary<TKey, TValue> Methods

    A dictionary that contains presentation objects.
    Name Description
    Add(TKey, TValue) Adds an element with the specified key and value to the dictionary.
    Add(KeyValuePair<TKey, TValue>) Adds a key-value pair to the dictionary.
    Clear() Removes all items from the dictionary.
    Contains(KeyValuePair<TKey, TValue>) Determines whether the dictionary contains a specific key-value pair.
    ContainsKey(TKey) Determines whether the dictionary contains an element with the specified key.
    CopyTo(KeyValuePair<TKey, TValue>[], Int32) Copies the elements of the dictionary to an array of key-value pairs, starting at the specified array index.
    Equals(Object, Object) static Determines whether the specified object instances are considered equal. Inherited from Object.
    Equals(Object) Determines whether the specified object is equal to the current object. Inherited from Object.
    GetEnumerator() Returns an enumerator that iterates through the dictionary.
    GetHashCode() Serves as the default hash function. Inherited from Object.
    GetType() Gets the Type of the current instance. Inherited from Object.
    MemberwiseClone() protected Creates a shallow copy of the current Object. Inherited from Object.
    ReferenceEquals(Object, Object) static Determines whether the specified Object instances are the same instance. Inherited from Object.
    Remove(TKey) Removes the value with the specified key from the dictionary.
    Remove(KeyValuePair<TKey, TValue>) Removes the specified key-value pair from the dictionary.
    ToString() Returns a string that represents the current object. Inherited from Object.
    TryGetValue(TKey, out TValue) Tries to get the value associated with the specified key.
    See Also