Share via


CategoryEntry.Item Property

When overridden in a derived class, gets the specified property.

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

Syntax

'Declaration
Public MustOverride ReadOnly Default Property Item ( _
    propertyName As String _
) As PropertyEntry
    Get
public abstract PropertyEntry this[
    string propertyName
] { get; }
public:
virtual property PropertyEntry^ default[String^ propertyName] {
    PropertyEntry^ get (String^ propertyName) abstract;
}
abstract Item : PropertyEntry
JScript does not support indexed properties.

Parameters

  • propertyName
    Type: System.String
    The name of the property to return.

Property Value

Type: Microsoft.Windows.Design.PropertyEditing.PropertyEntry
The property specified by propertyName.

Remarks

This property acts as an indexer for the Properties property.

.NET Framework Security

See Also

Reference

CategoryEntry Class

Microsoft.Windows.Design.PropertyEditing Namespace

Other Resources

WPF Designer Extensibility

Property Editing Architecture

Indexers (C# Programming Guide)