Back to Devexpress

DxSchedulerFormSettings.MinHeight Property

blazor-devexpress-dot-blazor-dot-dxschedulerformsettings-d7d14800.md

latest1.9 KB
Original Source

DxSchedulerFormSettings.MinHeight Property

Specifies the minimum height of an extended (pop-up) Scheduler appointment form.

Namespace : DevExpress.Blazor

Assembly : DevExpress.Blazor.v25.2.dll

NuGet Package : DevExpress.Blazor

Declaration

csharp
[DefaultValue("300px")]
[Parameter]
public override string MinHeight { get; set; }

Property Value

TypeDefaultDescription
String"300px"

The minimum height in CSS units.

|

Remarks

Use the following properties to restrict the appointment form size:

Note that when choosing height and width values, an appointment form can automatically display a scroll bar when the content height is greater than the element height.

razor
<DxScheduler StartDate="DateTime.Today"
             DataStorage="DataStorage">
    <Views>
        <DxSchedulerDayView ShowWorkTimeOnly="true" />
    </Views>
    <PopupSettings>
        <DxSchedulerFormSettings MinHeight="600px" MinWidth="900px" />
    </PopupSettings>
</DxScheduler>

The Height and Width properties allow you to specify the pop-up element size.

See Also

DxSchedulerFormSettings Class

DxSchedulerFormSettings Members

DevExpress.Blazor Namespace