Class FieldDescriptorNamePair
This class represents a mapping between two fields names.
Inheritance
Namespace: Telerik.Windows.Data
Assembly: Telerik.Windows.Data.dll
Syntax
public class FieldDescriptorNamePair : Object
Constructors
FieldDescriptorNamePair()
Initializes a new instance of the FieldDescriptorNamePair class.
Declaration
public FieldDescriptorNamePair()
FieldDescriptorNamePair(String, String)
Initializes a new instance of the FieldDescriptorNamePair class.
Declaration
public FieldDescriptorNamePair(string parentDescriptorFieldName, string childFieldDescriptorName)
Parameters
System.String
parentDescriptorFieldName
Name of the parent descriptor field. |
System.String
childFieldDescriptorName
Name of the child field descriptor. |
Properties
ChildFieldDescriptorName
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.
Declaration
public string ChildFieldDescriptorName { get; set; }
Property Value
System.String
The name of the child field descriptor. |
ParentFieldDescriptorName
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.
Declaration
public string ParentFieldDescriptorName { get; set; }
Property Value
System.String
The name of the parent field descriptor. |