Skip to main content
A newer version of this page is available. .

IMonthViewCellCustomizer Interface

The interface that should implement a class that modifies appearance settings of individual Month View cells.

Namespace: DevExpress.XamarinForms.Scheduler

Assembly: DevExpress.XamarinForms.Scheduler.dll

Declaration

public interface IMonthViewCellCustomizer

The following members return IMonthViewCellCustomizer objects:

Example

This example demonstrates how to use the month view cell style and its customizer to modify the cell’s appearance.

<dxs:MonthView.HeaderItemStyle>
    <dxs:MonthViewHeaderItemStyle>
        <dxs:MonthViewHeaderItemStyle.TodayWeekDayTextStyle>
            <dxs:TextStyle Color="#ff8000"/>
        </dxs:MonthViewHeaderItemStyle.TodayWeekDayTextStyle>
        <dxs:MonthViewHeaderItemStyle.Customizer>
            <views:MonthViewHeaderItemCustomizer/>
        </dxs:MonthViewHeaderItemStyle.Customizer>
    </dxs:MonthViewHeaderItemStyle>
</dxs:MonthView.HeaderItemStyle>

Symbol

Description

MonthView.AllDayCellStyle

Gets or sets appearance settings of cells.

MonthViewCellStyle

The storage for month view cell appearance settings.

MonthViewCellStyle.Customizer

Gets or sets an object that customizes the month view cell’s appearance depending on internal logic.

IMonthViewCellCustomizer

The interface that should implement a class that modifies appearance settings of individual Month View cells.

IMonthViewCellCustomizer.Customize(MonthViewCellViewModel)

Modifies appearance settings of an individual Month View cell.

MonthViewCellViewModel

The storage for appearance settings values of an individual month view cell‘s representation.

See Also