Interface IPropertyMappingInfo
Associates a source properties collection with the corresponding properties collection exposed by the scheduler events. It is used in common by all RadScheduler data providers. Contains a collection of SchedulerMapping objects, and is implemented by the
Inherited Members
Namespace: Telerik.WinControls.UI.Data
Assembly: Telerik.WinControls.UI.dll
Syntax
public interface IPropertyMappingInfo : IEnumerable<PropertyMapping>, IEnumerable
Methods
FindByDataSourceProperty(String)
Searches for a SchedulerMapping instance that binds a property of an item from the data store to a property of an item from RadScheduler. The RadScheduler items are events, resources, etc.
Declaration
PropertyMapping FindByDataSourceProperty(string dataSourceProperty)
Parameters
System.String
dataSourceProperty
Property name of an item in the data store. |
Returns
PropertyMapping
The first element that matches the property name, if found. |
FindByLogicalItemProperty(String)
Searches for a SchedulerMapping instance that binds a property of an item from the data store to a property of an item from RadScheduler. The RadScheduler items are events, resources, etc.
Declaration
PropertyMapping FindByLogicalItemProperty(string logicalProperty)
Parameters
System.String
logicalProperty
Property name of an item in RadScheduler. |
Returns
PropertyMapping
The first element that matches the property name, if found. |