Dela via


CategoryEntry.Properties Property

When overridden in a derived class, gets all the properties in the category.

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

Syntax

'Declaration
Public MustOverride ReadOnly Property Properties As IEnumerable(Of PropertyEntry)
'Usage
Dim instance As CategoryEntry 
Dim value As IEnumerable(Of PropertyEntry)

value = instance.Properties
public abstract IEnumerable<PropertyEntry> Properties { get; }
public:
virtual property IEnumerable<PropertyEntry^>^ Properties {
    IEnumerable<PropertyEntry^>^ get () abstract;
}
public abstract function get Properties () : IEnumerable<PropertyEntry>

Property Value

Type: System.Collections.Generic.IEnumerable<PropertyEntry>
An enumerable collection of all the properties in the category.

Remarks

You can also access this property using the indexer provided by Item.

.NET Framework Security

See Also

Reference

CategoryEntry Class

CategoryEntry Members

Microsoft.Windows.Design.PropertyEditing Namespace

Other Resources

WPF Designer Extensibility

Property Editing Architecture

Indexers (C# Programming Guide)

Default Properties