Back to Devexpress

DxSchedulerFormSettings.MinWidth Property

blazor-devexpress-dot-blazor-dot-dxschedulerformsettings-a2adfc84.md

latest1.9 KB
Original Source

DxSchedulerFormSettings.MinWidth Property

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

Namespace : DevExpress.Blazor

Assembly : DevExpress.Blazor.v25.2.dll

NuGet Package : DevExpress.Blazor

Declaration

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

Property Value

TypeDefaultDescription
String"440px"

The minimum width 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