Efl.Ui.Calendar.date_max

Description

Maximum date on calendar.

Values

  • max - Time structure containing the maximum date.

Getter

Default maximum year is -1. Default maximum day and month are 31 and DEC.

If the maximum year is a negative value, it will be limited depending on the platform architecture (year 2037 for 32 bits);

Setter

Setting the maximum date changes the displayed month or year if needed. Displayed days may also be disabled if they are bigger than maximum date. If the maximum date is less than Efl.Ui.Calendar.date_min, the maximum date will be changed to the minimum date returning false.

Signature

@property date_max {
    get {}
    set {
        return: bool;
    }
    values {
        max: Efl.Time;
    }
}

C signature

Efl_Time efl_ui_calendar_date_max_get(const Eo *obj);
Eina_Bool efl_ui_calendar_date_max_set(Eo *obj, Efl_Time max);

Implemented by