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

Supports classes that describe fields representing data.

Definition

Properties

Gets or sets the string that formats the data contained in the fields being described.

C#
string DataFormatString { get; set; }
Property Value:

The string that formats the data contained in the fields being described.

Gets or sets the binding which points to the data member to display in the cells of the IDataFieldDescriptor.

C#
Binding DataMemberBinding { get; set; }
Property Value:

The display member binding.

Gets or sets the data type of the fields being described.

C#
Type DataType { get; set; }
Property Value:

The data type of the fields being described.

Gets or sets a value indicating whether the descriptor is automatically generated.

C#
bool IsAutoGenerated { get; set; }
Property Value:

True if the descriptor is automatically generated; otherwise, false.

Gets or sets a value indicating whether the descriptor is visible in a user interface.

C#
bool IsVisible { get; set; }
Property Value:

True if the descriptor is visible in a user interface; otherwise, false.

Gets the type of the item that the field belongs to.

C#
Type ItemType { get; }
Property Value:

The type of the item.

Methods

Determines whether the data represented by the field descriptor can be grouped.

C#
bool CanGroup()
Returns:

bool

True if the data represented by the field descriptor can be grouped; otherwise, false.

Determines whether the data represented by the field descriptor can be sorted.

C#
bool CanSort()
Returns:

bool

True if the data represented by the field descriptor can be sorted; otherwise, false.

Extension Methods