Interface
IItemAccessor

Defines an interface used to acces property information in RadPropertyGrid.

Definition

Namespace:Telerik.WinControls.UI.PropertyGridData

Assembly:Telerik.WinControls.UI.dll

Syntax:

cs-api-definition
public interface IItemAccessor

Properties

Attributes

Gets a collection of the attributes applied to the property.

Declaration

cs-api-definition
AttributeCollection Attributes { get; }

Property Value

AttributeCollection

Category

Gets the property category.

Declaration

cs-api-definition
string Category { get; }

Property Value

string

Description

Gets the property description.

Declaration

cs-api-definition
string Description { get; }

Property Value

string

DisplayName

Gets the property display name

Declaration

cs-api-definition
string DisplayName { get; }

Property Value

string

Name

Gets the property name.

Declaration

cs-api-definition
string Name { get; }

Property Value

string

PropertyDescriptor

Gets the PropertyDescriptor associated with this property.

Declaration

cs-api-definition
PropertyDescriptor PropertyDescriptor { get; }

Property Value

PropertyDescriptor

PropertyType

Gets the property type.

Declaration

cs-api-definition
Type PropertyType { get; }

Property Value

Type

ReadOnly

Gets a value indicating whether the property is read only.

Declaration

cs-api-definition
bool ReadOnly { get; }

Property Value

bool

TypeConverter

Gets the TypeConverter associated with this property.

Declaration

cs-api-definition
TypeConverter TypeConverter { get; }

Property Value

TypeConverter

UITypeEditor

Gets the UITypeEditor associated with this property.

Declaration

cs-api-definition
UITypeEditor UITypeEditor { get; }

Property Value

UITypeEditor

Value

Gets or sets the property value.

Declaration

cs-api-definition
object Value { get; set; }

Property Value

object