ModelProperty.Dictionary Property
When overridden in a derived class, gets the Value property cast as a ModelItemDictionary.
Namespace: Microsoft.Windows.Design.Model
Assembly: Microsoft.Windows.Design.Interaction (in Microsoft.Windows.Design.Interaction.dll)
Syntax
'Declaration
Public MustOverride ReadOnly Property Dictionary As ModelItemDictionary
'Usage
Dim instance As ModelProperty
Dim value As ModelItemDictionary
value = instance.Dictionary
public abstract ModelItemDictionary Dictionary { get; }
public:
virtual property ModelItemDictionary^ Dictionary {
ModelItemDictionary^ get () abstract;
}
public abstract function get Dictionary () : ModelItemDictionary
Property Value
Type: Microsoft.Windows.Design.Model.ModelItemDictionary
Value cast as an ModelItemDictionary.
Remarks
This property allows you to access dictionary properties easily without invoking casts. If the property value is not a dictionary, this property returns nulla null reference (Nothing in Visual Basic).
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
Microsoft.Windows.Design.Model Namespace