Xamarin.Forms.Calendar.Platform.Droid.MonthCellDescriptor.MonthCellDescriptor C# (CSharp) Method

MonthCellDescriptor() public method

public MonthCellDescriptor ( System.DateTime date, bool isCurrentMonth, bool isSelectable, bool isSelected, bool isToday, bool isHighlighted, int value, RangeState rangeState ) : System
date System.DateTime
isCurrentMonth bool
isSelectable bool
isSelected bool
isToday bool
isHighlighted bool
value int
rangeState RangeState
return System
        public MonthCellDescriptor(DateTime date, bool isCurrentMonth, bool isSelectable, bool isSelected,
            bool isToday, bool isHighlighted, int value, RangeState rangeState)
        {
            DateTime = date;
            Value = value;
            IsCurrentMonth = isCurrentMonth;
            IsSelected = isSelected;
            IsHighlighted = isHighlighted;
            IsToday = isToday;
            IsSelectable = isSelectable;
            RangeState = rangeState;
        }