New to Telerik UI for WinFormsStart a free 30-day trial

IItemAccessor

Interface

Defines an interface used to acces property information in RadPropertyGrid.

Definition

Namespace:Telerik.WinControls.UI.PropertyGridData

Assembly:Telerik.WinControls.UI.dll

Syntax:

C#
public interface IItemAccessor

Derived Classes: ArrayItemAccessorDescriptorItemAccessorImmutableItemAccessorItemAccessor

Properties

Gets a collection of the attributes applied to the property.

C#
AttributeCollection Attributes { get; }

Gets the property category.

C#
string Category { get; }

Gets the property description.

C#
string Description { get; }

Gets the property display name

C#
string DisplayName { get; }

Gets the property name.

C#
string Name { get; }

Gets the PropertyDescriptor associated with this property.

C#
PropertyDescriptor PropertyDescriptor { get; }

Gets the property type.

C#
Type PropertyType { get; }

Gets a value indicating whether the property is read only.

C#
bool ReadOnly { get; }

Gets the TypeConverter associated with this property.

C#
TypeConverter TypeConverter { get; }

Gets the UITypeEditor associated with this property.

C#
UITypeEditor UITypeEditor { get; }

Gets or sets the property value.

C#
object Value { get; set; }