DxSchedulerFormSettings Class
Contains settings for extended (pop-up) forms.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v25.1.dll
NuGet Package: DevExpress.Blazor
Declaration
public class DxSchedulerFormSettings :
SchedulerPopupSettingsBase
Remarks
Declare the DxSchedulerFormSettings
object in the PopupSettings tag to specify the following settings:
The following example allows drag and resize operations:
<DxScheduler StartDate="DateTime.Today"
DataStorage="DataStorage">
<Views>
<DxSchedulerDayView ShowWorkTimeOnly="true" />
</Views>
<PopupSettings>
<DxSchedulerFormSettings AllowDrag="true"
AllowResize="true" />
</PopupSettings>
</DxScheduler>
Inheritance
Object
ComponentBase
SchedulerPopupSettingsBase
DxSchedulerFormSettings
See Also