Skip to main content

MonthView.CellAutoHeightOptions Property

Options that specify how the height of cells are adjusted.

Namespace: DevExpress.Web.ASPxScheduler

Assembly: DevExpress.Web.ASPxScheduler.v23.2.dll

NuGet Package: DevExpress.Web.Scheduler

Declaration

public ASPxSchedulerOptionsCellAutoHeight CellAutoHeightOptions { get; }

Property Value

Type Description
ASPxSchedulerOptionsCellAutoHeight

Automatic height options for cells.

Remarks

The list below illustrates different auto-height modes (Mode):

  • Mode = None

    The control does not change cells’ height to fit their content.

    MonthView.CellAutoHeightOptions - ASPxSchedulerOptionsCellAutoHeight.Mode = None

  • Mode = FitToContent

    The control stretches (or narrows) cells’ height to fit their content.

    MonthView.CellAutoHeightOptions - ASPxSchedulerOptionsCellAutoHeight.Mode = FitToContent

  • Mode = LimitHeight

    The control stretches (or narrows) the height of cells to fit their content. The MinHeight and MaxHeight properties limit the height of cells.

    MonthView.CellAutoHeightOptions - ASPxSchedulerOptionsCellAutoHeight.Mode = LimitHeight

See Also