corelibraries-devexpress-dot-xtrascheduler-dot-appointmentstoragebase-835cbc14.md
Gets an object that specifies how appointment properties map to the data source fields.
Namespace : DevExpress.XtraScheduler
Assembly : DevExpress.XtraScheduler.v25.2.Core.Desktop.dll
NuGet Package : DevExpress.Scheduler.CoreDesktop
public AppointmentMappingInfo Mappings { get; set; }
Public Property Mappings As AppointmentMappingInfo
| Type | Description |
|---|---|
| AppointmentMappingInfo |
An AppointmentMappingInfo object that provides information on the mapping of the appointment properties to the data fields.
|
The following code snippets (auto-collected from DevExpress Examples) contain references to the Mappings property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
winforms-scheduler-gantt-view/CS/dxT183299/Form1.cs#L76
{
AppointmentMappingInfo mappings = this.schedulerStorage.Appointments.Mappings;
mappings.AppointmentId = "Id";
winforms-scheduler-handle-fetchappointments-event/CS/Form1.cs#L51
void InitAppointments() {
AppointmentMappingInfo mappings = this.schedulerStorage1.Appointments.Mappings;
mappings.Start = "StartTime";
private void InitAppointments() {
AppointmentMappingInfo mappings = this.schedulerStorage1.Appointments.Mappings;
mappings.Start = "StartTime";
winforms-scheduler-replace-default-command/CS/WindowsFormsApplication1/Form1.cs#L58
private void InitAppointments() {
AppointmentMappingInfo mappings = this.schedulerStorage1.Appointments.Mappings;
mappings.Start = "StartTime";
winforms-scheduler-sync-outlook-calendars/CS/SyncWithOutlook/Form1.cs#L48
private void InitAppointments() {
AppointmentMappingInfo aptmappings = this.schedulerStorage1.Appointments.Mappings;
aptmappings.Start = "StartTime";
winforms-scheduler-bind-sql-server-customize-update-delete-insert-queries/VB/Form1.vb#L30
Dim schedulerStorage As SchedulerStorage = schedulerControl1.Storage
Dim appointmentMappings As AppointmentMappingInfo = schedulerStorage.Appointments.Mappings
appointmentMappings.AppointmentId = "ID"
winforms-scheduler-gantt-view/VB/dxT183299/Form1.vb#L72
Private Sub InitAppointments()
Dim mappings As AppointmentMappingInfo = Me.schedulerStorage.Appointments.Mappings
mappings.AppointmentId = "Id"
winforms-scheduler-handle-fetchappointments-event/VB/Form1.vb#L54
Private Sub InitAppointments()
Dim mappings As AppointmentMappingInfo = schedulerStorage1.Appointments.Mappings
mappings.Start = "StartTime"
Private Sub InitAppointments()
Dim mappings As AppointmentMappingInfo = schedulerStorage1.Appointments.Mappings
mappings.Start = "StartTime"
winforms-scheduler-replace-default-command/VB/WindowsFormsApplication1/Form1.vb#L58
Private Sub InitAppointments()
Dim mappings As AppointmentMappingInfo = Me.schedulerStorage1.Appointments.Mappings
mappings.Start = "StartTime"
See Also