windowsforms-devexpress-dot-xtrascheduler-dot-appointmentstatusdatastorage-53676867.md
Gets an object that specifies how Status properties map to the data source fields.
Namespace : DevExpress.XtraScheduler
Assembly : DevExpress.XtraScheduler.v25.2.dll
NuGet Package : DevExpress.Win.Scheduler
public StatusMappingInfo Mappings { get; }
Public ReadOnly Property Mappings As StatusMappingInfo
| Type | Description |
|---|---|
| StatusMappingInfo |
A StatusMappingInfo object that provides information on Status mappings.
|
The following code snippet (auto-collected from DevExpress Examples) contains a reference 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-bind-to-custom-objects/CS/CustomObjectsBinding/Form1.cs#L123
public void InitStatus(BindingList<CustomStatus> listStatus) {
StatusMappingInfo mappingsStatus = this.schedulerDataStorage1.Statuses.Mappings;
mappingsStatus.Brush = "ColorStatus";
winforms-scheduler-bind-to-custom-objects/VB/CustomObjectsBinding/Form1.vb#L127
Public Sub InitStatus(ByVal listStatus As BindingList(Of CustomStatus))
Dim mappingsStatus As StatusMappingInfo = Me.schedulerDataStorage1.Statuses.Mappings
mappingsStatus.Brush = "ColorStatus"
See Also
AppointmentStatusDataStorage Class