Skip to main content
All docs
V25.2
  • DocumentCustomPropertyDictionary Members

    Contains custom document properties of a presentation.

    Constructors

    Name Description
    DocumentCustomPropertyDictionary() Initializes a new instance of the DocumentCustomPropertyDictionary class.

    Properties

    Name Description
    Count Returns the number of key-value pairs contained in the dictionary. Inherited from PresentationDictionary<TKey, TValue>.
    IsReadOnly Indicates whether the dictionary is read-only. Inherited from PresentationDictionary<TKey, TValue>.
    Item[TKey] Gets or sets the value associated with the specified key. Inherited from PresentationDictionary<TKey, TValue>.
    Keys Returns a collection that contains the keys in the dictionary. Inherited from PresentationDictionary<TKey, TValue>.
    Values Returns a collection that contains the values in the dictionary. Inherited from PresentationDictionary<TKey, TValue>.

    Methods

    Name Description
    Add(TKey, TValue) Adds an element with the specified key and value to the dictionary. Inherited from PresentationDictionary<TKey, TValue>.
    Add(KeyValuePair<TKey, TValue>) Adds a key-value pair to the dictionary. Inherited from PresentationDictionary<TKey, TValue>.
    Clear() Removes all items from the dictionary. Inherited from PresentationDictionary<TKey, TValue>.
    Contains(KeyValuePair<TKey, TValue>) Determines whether the dictionary contains a specific key-value pair. Inherited from PresentationDictionary<TKey, TValue>.
    ContainsKey(TKey) Determines whether the dictionary contains an element with the specified key. Inherited from PresentationDictionary<TKey, TValue>.
    CopyTo(KeyValuePair<TKey, TValue>[], Int32) Copies the elements of the dictionary to an array of key-value pairs, starting at the specified array index. Inherited from PresentationDictionary<TKey, TValue>.
    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. Inherited from PresentationDictionary<TKey, TValue>.
    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. Inherited from PresentationDictionary<TKey, TValue>.
    Remove(KeyValuePair<TKey, TValue>) Removes the specified key-value pair from the dictionary. Inherited from PresentationDictionary<TKey, TValue>.
    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. Inherited from PresentationDictionary<TKey, TValue>.
    See Also