blazor-devexpress-dot-blazor-9fdb391c.md
Contains compact form settings.
Namespace : DevExpress.Blazor
Assembly : DevExpress.Blazor.v25.2.dll
NuGet Package : DevExpress.Blazor
public class DxSchedulerCompactFormSettings :
SchedulerPopupSettingsBase
Declare the DxSchedulerCompactFormSettings object in the PopupSettings tag to specify the following properties:
The following example specifies the minimum and maximum size of compact forms:
<DxScheduler StartDate="DateTime.Today"
DataStorage="DataStorage">
<Views>
<DxSchedulerDayView ShowWorkTimeOnly="true" />
</Views>
<PopupSettings>
<DxSchedulerCompactFormSettings MinHeight="350px" MinWidth="400px"
MaxHeight="500px" MaxWidth="600px" />
</PopupSettings>
</DxScheduler>
Object ComponentBase SchedulerPopupSettingsBase DxSchedulerCompactFormSettings
See Also