Represents a date selection range in a month calendar control.
- Header
#include <xtd/forms/selection_range>
- Namespace
- xtd::forms
- Library
- xtd.forms
- Examples
- The following example sets the xtd::forms::month_calendar::selection_range property of a xtd::forms::month_calendar control based on two dates entered into two xtd::forms::text_box controls when a xtd::forms::button is clicked. This code assumes new instances of a xtd::forms::month_calendar control, two xtd::forms::text_box controls, and a xtd::forms::button have been created on a xtd::forms::form. You might consider adding code to validate the xtd::forms::control::text assigned to the text boxes to verify that they contain valid dates.
void button1_click(const object& sender, const event_args& e) {
try {
} catch(const system_exception& ex) {
}
}
|
| object ()=default |
| Create a new instance of the ultimate base class object. More...
|
|
bool | equals (const object &obj) const noexcept |
| Determines whether the specified object is equal to the current object. More...
|
|
virtual size_t | get_hash_code () const noexcept |
| Serves as a hash function for a particular type. More...
|
|
virtual type_object | get_type () const noexcept |
| Gets the type of the current instance. More...
|
|
template<typename object_t > |
std::unique_ptr< object_t > | memberwise_clone () const noexcept |
| Creates a shallow copy of the current object. More...
|
|
static bool | equals (const object &object_a, const object &object_b) noexcept |
| Determines whether the specified object instances are considered equal. More...
|
|
static bool | reference_equals (const object &object_a, const object &object_b) noexcept |
| Determines whether the specified object instances are the same instance. More...
|
|
◆ selection_range() [1/2]
xtd::forms::selection_range::selection_range |
( |
| ) |
|
|
default |
◆ selection_range() [2/2]
◆ end() [1/2]
virtual date_time xtd::forms::selection_range::end |
( |
| ) |
const |
|
virtualnoexcept |
Properties
Gets the ending date and time of the selection range.
- Returns
- The ending xtd::date_time value of the range.
◆ end() [2/2]
Sets the ending date and time of the selection range.
- Parameters
-
- Returns
- This current instance.
◆ start() [1/2]
virtual date_time xtd::forms::selection_range::start |
( |
| ) |
const |
|
virtualnoexcept |
Gets the starting date and time of the selection range.
- Returns
- The starting xtd::date_time value of the range.
◆ start() [2/2]
Sets the starting date and time of the selection range.
- Parameters
-
- Returns
- This current instance.
◆ to_string()
xtd::ustring xtd::forms::selection_range::to_string |
( |
| ) |
const |
|
overridevirtualnoexcept |
The documentation for this class was generated from the following file: