DateTimePicker::Value Property
.NET Framework (current version)
Gets or sets the date/time value assigned to the control.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException |
If the Value property has not been changed in code or by the user, it is set to the current date and time (DateTime::Now).
The following code example demonstrates how use the Value property to retrieve the current date value. First, the example displays the Value property. The example then increments the Value property by one day and displays the property value again.
public: MyClass() { // Create a new DateTimePicker DateTimePicker^ dateTimePicker1 = gcnew DateTimePicker; array<Control^>^ myClassControls = {dateTimePicker1}; Controls->AddRange( myClassControls ); MessageBox::Show( dateTimePicker1->Value.ToString() ); dateTimePicker1->Value = DateTime::Now.AddDays( 1 ); MessageBox::Show( dateTimePicker1->Value.ToString() ); }
.NET Framework
Available since 1.1
Available since 1.1
Show: