Back to Devexpress

DatePickerType Enum

aspnet-devexpress-dot-web-92d306fa.md

latest2.5 KB
Original Source

DatePickerType Enum

Lists values specifying a date component an end user can select (a day, month, decade or year) in the calendar.

Namespace : DevExpress.Web

Assembly : DevExpress.Web.v25.2.dll

NuGet Package : DevExpress.Web

Declaration

csharp
public enum DatePickerType
vb
Public Enum DatePickerType

Members

NameDescription
NotSet

The date picker type is not set. In this case:

| | Days |

An end user can select a day in the calendar.

| | Months |

An end user selects a month in the calendar.

| | Years |

An end user selects a year in the calendar.

| | Decades |

An end user selects a decade in the calendar.

|

The following properties accept/return DatePickerType values:

Remarks

aspx
<dx:ASPxDateEdit runat="server" ID="dateEdit2" PickerType="Months">
    <CalendarProperties>
       <FastNavProperties InitialView="Years" MaxView="Years" />
    </CalendarProperties>
</dx:ASPxDateEdit>

Online Demo

Month-Year Picker

See Also

DevExpress.Web Namespace