xtd 1.0.0
Loading...
Searching...
No Matches
selection_range.hpp
Go to the documentation of this file.
1
4#pragma once
5#include "../forms_export.hpp"
6#include <xtd/date_time>
7#include <xtd/object>
8
10namespace xtd {
12 namespace forms {
40
44 selection_range() = default;
51
53
59
65
68 [[nodiscard]] auto to_string() const noexcept -> xtd::string override;
70 };
71 }
72}
Represents an instant in time, typically expressed as a date and time of day.
Definition date_time.hpp:83
Supports all classes in the xtd class hierarchy and provides low-level services to derived classes....
Definition object.hpp:45
Contains forms_export_ keyword.
#define forms_export_
Define shared library export.
Definition forms_export.hpp:13
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition texts.hpp:219
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition abstract_object.hpp:8
selection_range(xtd::date_time start, xtd::date_time end)
Initializes a new instance of the xtd::forms::selection_range class with the specified beginning and ...
xtd::date_time start
Gets or sets the starting date and time of the selection range.
Definition selection_range.hpp:63
xtd::date_time end
Gets or sets the ending date and time of the selection range.
Definition selection_range.hpp:58
auto to_string() const noexcept -> xtd::string override
Returns a xtd::string that represents the current object.
selection_range()=default
Initializes a new instance of the xtd::forms::selection_range class.