CupertinoDatePickerDateOrder
Inherits: Enum
Determines the order of the columns inside
CupertinoDatePicker in date mode.
Properties
-
DAY_MONTH_YEAR–Order of the columns, from left to right: day, month, year.
-
MONTH_DAY_YEAR–Order of the columns, from left to right: month, day, year.
-
YEAR_DAY_MONTH–Order of the columns, from left to right: year, day, month.
-
YEAR_MONTH_DAY–Order of the columns, from left to right: year, month, day.
Properties#
DAY_MONTH_YEAR = 'dmy'
class-attribute
instance-attribute
#
Order of the columns, from left to right: day, month, year.
Example: 12 | March | 1996
MONTH_DAY_YEAR = 'mdy'
class-attribute
instance-attribute
#
Order of the columns, from left to right: month, day, year.
Example: March | 12 | 1996
YEAR_DAY_MONTH = 'ydm'
class-attribute
instance-attribute
#
Order of the columns, from left to right: year, day, month.
Example: 1996 | 12 | March
YEAR_MONTH_DAY = 'ymd'
class-attribute
instance-attribute
#
Order of the columns, from left to right: year, month, day.
Example: 1996 | March | 12