DateTimePicker.Format Property
Gets or sets the format of the date and time displayed in the control.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Property Value
Type: System.Windows.Forms.DateTimePickerFormatOne of the DateTimePickerFormat values. The default is Long.
| Exception | Condition |
|---|---|
| InvalidEnumArgumentException |
The value assigned is not one of the DateTimePickerFormat values. |
This property determines the date/time format the date is displayed in. The date/time format is based on the user's regional settings in their operating system.
Note
|
|---|
|
The Format property must be set to DateTimePickerFormat.Custom for the CustomFormat property to affect the formatting of the displayed date and time. |
To display only time in a DateTimePicker, set the Format to Time, and the ShowUpDown property to true.
The following code example sets the CustomFormat property so that the DateTimePicker will display the date as "June 01, 2001 - Friday". This code assumes that an instance of a DateTimePicker control has been created on a Form.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note