Class ItemPropertyInfo
Contains information about a property.
Inheritance
Namespace: Telerik.Windows.Data
Assembly: Telerik.Windows.Data.dll
Syntax
public class ItemPropertyInfo : Object
Constructors
ItemPropertyInfo(String, Type, Object)
Initializes a new instance of the ItemPropertyInfo class.
Declaration
public ItemPropertyInfo(string name, Type type, object descriptor)
Parameters
System.String
name
The name of the property. |
System.Type
type
The type of the property. |
System.Object
descriptor
An object that contains additional information about the property. |
Properties
Descriptor
Get an object that contains additional information about the property.
Declaration
public object Descriptor { get; }
Property Value
System.Object
An object that contains additional information about the property. |
Name
Gets the name of the property.
Declaration
public string Name { get; }
Property Value
System.String
The name of the property. |
PropertyType
Gets the type of the property.
Declaration
public Type PropertyType { get; }
Property Value
System.Type
The type of the property. |