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

IMappingInfo

Interface

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

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.Scheduler.dll

Syntax:

C#
public interface IMappingInfo : IEnumerable

Derived Classes: AppointmentMappingInfoMappingInfoResourceMappingInfo

Inherited Members IEnumerable.GetEnumerator()

Methods

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.

C#
SchedulerMapping FindByDataSourceProperty(string dataSourceProperty)
Parameters:dataSourcePropertystring

Property name of an item in the data store.

Returns:

SchedulerMapping

The first element that matches the property name, if found.

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.

C#
SchedulerMapping FindBySchedulerProperty(string schedulerProperty)
Parameters:schedulerPropertystring

Property name of an item in RadScheduler.

Returns:

SchedulerMapping

The first element that matches the property name, if found.