Class
PropertyMapping

Represents the simple binding between the property of an item from the data store and the property of an item from RadScheduler. The RadScheduler items are events, resources, etc.

Definition

Namespace:Telerik.WinControls.UI.Data

Assembly:Telerik.WinControls.UI.dll

Syntax:

cs-api-definition
public class PropertyMapping

Inheritance: objectPropertyMapping

Constructors

PropertyMapping(string, string)

Initializes a new instance of the SchedulerMapping class that simple-binds the indicated property of an item from RadScheduler to the specified item from the data store.

Declaration

cs-api-definition
public PropertyMapping(string logicalItemProperty, string dataSourceProperty)

Parameters

logicalItemProperty

string

Property name of an item in RadScheduler.

dataSourceProperty

string

Property name of an item in the data store.

Fields

ConvertToDataSourceValue

The callback that converts the given value object from a RadScheduler item to the specified type of the data store corresponding item.

Declaration

cs-api-definition
public ConvertCallback ConvertToDataSourceValue

Field Value

ConvertCallback

ConvertToLogicalValue

The callback that converts the given value object from the data store to the specified type of the RadScheduler corresponding item.

Declaration

cs-api-definition
public ConvertCallback ConvertToLogicalValue

Field Value

ConvertCallback

Properties

DataSourceItemProperty

Gets or sets the data store item property name that is mapped.

Declaration

cs-api-definition
public string DataSourceItemProperty { get; set; }

Property Value

string

LogicalItemProperty

Gets or sets the RadScheduler item property name that is mapped.

Declaration

cs-api-definition
public string LogicalItemProperty { get; set; }

Property Value

string