Interface IItemAccessor
Defines an interface used to acces property information in RadPropertyGrid.
Namespace: Telerik.WinControls.UI.PropertyGridData
Assembly: Telerik.WinControls.UI.dll
Syntax
public interface IItemAccessor
Properties
Attributes
Gets a collection of the attributes applied to the property.
Declaration
AttributeCollection Attributes { get; }
Property Value
System.ComponentModel.AttributeCollection
|
Category
Gets the property category.
Declaration
string Category { get; }
Property Value
System.String
|
Description
Gets the property description.
Declaration
string Description { get; }
Property Value
System.String
|
DisplayName
Gets the property display name
Declaration
string DisplayName { get; }
Property Value
System.String
|
Name
Gets the property name.
Declaration
string Name { get; }
Property Value
System.String
|
PropertyDescriptor
Gets the PropertyDescriptor associated with this property.
Declaration
PropertyDescriptor PropertyDescriptor { get; }
Property Value
System.ComponentModel.PropertyDescriptor
|
PropertyType
Gets the property type.
Declaration
Type PropertyType { get; }
Property Value
System.Type
|
ReadOnly
Gets a value indicating whether the property is read only.
Declaration
bool ReadOnly { get; }
Property Value
System.Boolean
|
TypeConverter
Gets the TypeConverter associated with this property.
Declaration
TypeConverter TypeConverter { get; }
Property Value
System.ComponentModel.TypeConverter
|
UITypeEditor
Gets the UITypeEditor associated with this property.
Declaration
UITypeEditor UITypeEditor { get; }
Property Value
System.Drawing.Design.UITypeEditor
|
Value
Gets or sets the property value.
Declaration
object Value { get; set; }
Property Value
System.Object
|