corelibraries-devexpress-dot-xtrascheduler-dot-appointmentstoragebase-7de01b9a.md
Gets or sets a value indicating whether an appointment could be shared between multiple resources.
Namespace : DevExpress.XtraScheduler
Assembly : DevExpress.XtraScheduler.v25.2.Core.Desktop.dll
NuGet Package : DevExpress.Scheduler.CoreDesktop
[DefaultValue(false)]
public bool ResourceSharing { get; set; }
<DefaultValue(False)>
Public Property ResourceSharing As Boolean
| Type | Default | Description |
|---|---|---|
| Boolean | false |
true if the resource sharing is enabled; otherwise, false.
|
The following code snippets (auto-collected from DevExpress Examples) contain references to the ResourceSharing 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.
asp-net-mvc-scheduler-use-checkboxlist-to-filter-resources/CS/Code/SchedulerHelper.cs#L34
settings.Storage.Appointments.ResourceSharing = true;
settings.Start = new DateTime(2008, 7, 11);
asp-net-mvc-scheduler-appointment-edit-form/CS/Code/SchedulerHelper.cs#L49
settings.Storage.Appointments.ResourceSharing = true;
settings.Start = new DateTime(2008, 7, 11);
asp-net-mvc-scheduler-use-checkboxlist-to-filter-resources/VB/Code/SchedulerHelper.vb#L39
settings.Storage.Appointments.ResourceSharing = True
settings.Start = New DateTime(2008, 7, 11)
asp-net-mvc-scheduler-appointment-edit-form/VB/Code/SchedulerHelper.vb#L39
End Sub)
settings.Storage.Appointments.ResourceSharing = True
settings.Start = New System.DateTime(2008, 7, 11)
See Also