AllDayPanelMode Enum
In This Article
Specifies the display mode for the “All day” panel.
Namespace: DevExtreme.AspNet.Mvc
Assembly: DevExtreme.AspNet.Core.dll
#Declaration
C#
[JsonConverter(typeof(StringEnumConverter))]
public enum AllDayPanelMode
#Members
Name | Description |
---|---|
All
|
Displays appointments that have a duration equal to or more than 24 hours. |
All
|
Displays only the appointments whose |
Hidden
|
Hides the “All day” panel. |
#Remarks
Use the AllDayPanelMode(AllDayPanelMode) method to specify the display mode for the “All day” panel.
@(Html.DevExtreme().Scheduler()
.AllDayPanelMode(AllDayPanelMode.All);
//...
)
See Also