DxSchedulerFormSettings.AllowResize Property
Specifies whether users can resize the extended (pop-up) appointment form.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v25.1.dll
NuGet Package: DevExpress.Blazor
Declaration
[DefaultValue(false)]
[Parameter]
public bool AllowResize { get; set; }
Property Value
Type | Default | Description |
---|---|---|
Boolean | false |
|
Remarks
Set the AllowResize
property to true
to allow users resize the pop-up appointment form.
<DxScheduler StartDate="DateTime.Today"
DataStorage="DataStorage">
<Views>
<DxSchedulerDayView ShowWorkTimeOnly="true" />
</Views>
<PopupSettings>
<DxSchedulerFormSettings AllowResize="true" />
</PopupSettings>
</DxScheduler>
See Also