SelectionRange Class
Represents a date selection range in a month calendar control.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
The SelectionRange type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | SelectionRange() | Initializes a new instance of the SelectionRange class. |
![]() | SelectionRange(SelectionRange) | Initializes a new instance of the SelectionRange class with the specified selection range. |
![]() | SelectionRange(DateTime, DateTime) | Initializes a new instance of the SelectionRange class with the specified beginning and ending dates. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object) | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | ToString | Infrastructure. Returns a string that represents the SelectionRange. (Overrides Object::ToString().) |
The SelectionRange is the date or dates selected and highlighted on the MonthCalendar control. If only one date is selected, the Start and End property values will be equal. The SelectionRange can be changed by the user clicking a date while dragging the mouse pointer across the desired dates, or you can set the range in code. For example, you might want to have the user enter a date range into two TextBox controls or two DateTimePicker controls and set the SelectionRange based on those dates.
The following example sets the SelectionRange property of a MonthCalendar control based on two dates entered into two TextBox controls when a Button is clicked. This code assumes new instances of a MonthCalendar control, two TextBox controls, and a Button have been created on a Form. You might consider adding code to validate the Text assigned to the text boxes to verify that they contain valid dates.
private: void button1_Click( Object^ sender, EventArgs^ e ) { // Set the SelectionRange with start and end dates from text boxes. try { monthCalendar1->SelectionRange = gcnew SelectionRange( DateTime::Parse( textBox1->Text ), DateTime::Parse( textBox2->Text ) ); } catch ( Exception^ ex ) { MessageBox::Show( ex->Message ); } }
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.
