Back to Devexpress

AppointmentStorageBase.ResourceSharing Property

corelibraries-devexpress-dot-xtrascheduler-dot-appointmentstoragebase-7de01b9a.md

latest3.4 KB
Original Source

AppointmentStorageBase.ResourceSharing Property

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

Declaration

csharp
[DefaultValue(false)]
public bool ResourceSharing { get; set; }
vb
<DefaultValue(False)>
Public Property ResourceSharing As Boolean

Property Value

TypeDefaultDescription
Booleanfalse

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

csharp
settings.Storage.Appointments.ResourceSharing = true;
settings.Start = new DateTime(2008, 7, 11);

asp-net-mvc-scheduler-appointment-edit-form/CS/Code/SchedulerHelper.cs#L49

csharp
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

vb
settings.Storage.Appointments.ResourceSharing = True
settings.Start = New DateTime(2008, 7, 11)

asp-net-mvc-scheduler-appointment-edit-form/VB/Code/SchedulerHelper.vb#L39

vb
End Sub)
settings.Storage.Appointments.ResourceSharing = True
settings.Start = New System.DateTime(2008, 7, 11)

Implements

ResourceSharing

See Also

AppointmentStorageBase Class

AppointmentStorageBase Members

DevExpress.XtraScheduler Namespace