Efl.Ui.Datepicker.date

Description

The current value of date.

year: Year. The year range is from 1900 to 2137.

month: Month. The month range is from 0 to 11.

day: Day. The day range is from 1 to 31 according to month.

Since 1.23

Values

  • year - The year value.
  • month - The month value from 1 to 12.
  • day - The day value from 1 to 31.

Signature

@property date {
    get {}
    set {}
    values {
        year: int;
        month: int;
        day: int;
    }
}

C signature

void efl_ui_datepicker_date_get(const Eo *obj, int *year, int *month, int *day);
void efl_ui_datepicker_date_set(Eo *obj, int year, int month, int day);

Implemented by