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

This class represents a mapping between two fields names.

Definition

Namespace:Telerik.Windows.Data

Assembly:Telerik.Windows.Data.dll

Syntax:

C#
public class FieldDescriptorNamePair

Inheritance: objectFieldDescriptorNamePair

Constructors

Initializes a new instance of the FieldDescriptorNamePair class.

C#
public FieldDescriptorNamePair()

Initializes a new instance of the FieldDescriptorNamePair class.

C#
public FieldDescriptorNamePair(string parentDescriptorFieldName, string childFieldDescriptorName)
Parameters:parentDescriptorFieldNamestring

Name of the parent descriptor field.

childFieldDescriptorNamestring

Name of the child field descriptor.

Properties

Gets or sets the name of the child field descriptor. This property points to the field descriptor from the child data source in a relation.

C#
public string ChildFieldDescriptorName { get; set; }
Property Value:

The name of the child field descriptor.

Gets or sets the name of the parent field descriptor. This property points to the field descriptor from the parent data source in a relation.

C#
public string ParentFieldDescriptorName { get; set; }
Property Value:

The name of the parent field descriptor.