Interface
IDataFieldDescriptor

Supports classes that describe fields representing data.

Definition

Namespace:Telerik.Windows.Data

Assembly:Telerik.Windows.Data.dll

Syntax:

cs-api-definition
public interface IDataFieldDescriptor : IFieldDescriptor

Inherited Members IFieldDescriptor.CreateField()IFieldDescriptor.UniqueNameIFieldDescriptor.IsReadOnly

Properties

DataFormatString

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

Declaration

cs-api-definition
string DataFormatString { get; set; }

Property Value

string

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

DataMemberBinding

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

Declaration

cs-api-definition
Binding DataMemberBinding { get; set; }

Property Value

Binding

The display member binding.

DataType

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

Declaration

cs-api-definition
Type DataType { get; set; }

Property Value

Type

The data type of the fields being described.

IsAutoGenerated

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

Declaration

cs-api-definition
bool IsAutoGenerated { get; set; }

Property Value

bool

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

IsVisible

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

Declaration

cs-api-definition
bool IsVisible { get; set; }

Property Value

bool

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

ItemType

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

Declaration

cs-api-definition
Type ItemType { get; }

Property Value

Type

The type of the item.

Methods

CanGroup()

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

Declaration

cs-api-definition
bool CanGroup()

Returns

bool

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

CanSort()

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

Declaration

cs-api-definition
bool CanSort()

Returns

bool

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

Extension Methods