Skip to main content
All docs
V25.1
  • DxSchedulerCompactFormSettings Class

    Contains compact form settings.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.dll

    NuGet Package: DevExpress.Blazor

    Declaration

    public class DxSchedulerCompactFormSettings :
        SchedulerPopupSettingsBase

    Remarks

    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>
    

    Inheritance

    Object
    ComponentBase
    SchedulerPopupSettingsBase
    DxSchedulerCompactFormSettings
    See Also