Share via


ModelItemDictionary.Values Property

When overridden in a derived class, gets the values of the dictionary.

Namespace:  Microsoft.Windows.Design.Model
Assembly:  Microsoft.Windows.Design.Interaction (in Microsoft.Windows.Design.Interaction.dll)

Syntax

'Declaration
Public MustOverride ReadOnly Property Values As ICollection(Of ModelItem)
    Get
public abstract ICollection<ModelItem> Values { get; }
public:
virtual property ICollection<ModelItem^>^ Values {
    ICollection<ModelItem^>^ get () abstract;
}
abstract Values : ICollection<ModelItem>
abstract function get Values () : ICollection<ModelItem>

Property Value

Type: System.Collections.Generic.ICollection<ModelItem>
An ICollection that contains the items of the ModelItemDictionary.

Implements

IDictionary<TKey, TValue>.Values

Remarks

The values are guaranteed to be in the same order as the keys. The resulting collection is read-only.

.NET Framework Security

See Also

Reference

ModelItemDictionary Class

Microsoft.Windows.Design.Model Namespace

Other Resources

WPF Designer Extensibility Architecture