Stores an ordered pair of integers, which specify a height and width.
Stores an ordered pair of integers, which specify a height and width.
Definition size.h:31
Supports all classes in the xtd class hierarchy and provides low-level services to derived classes....
Definition object.h:42
#define drawing_export_
Define shared library export.
Definition drawing_export.h:13
- Inheritance
- xtd::object → xtd::drawing::size
- Namespace
- xtd::drawing
- Library
- xtd.drawing
- Examples
- about_dialog_with_user_pages.cpp, application_settings_without_cmake_setting_commands.cpp, auto_scroll.cpp, colored_tab_pages.cpp, demo.cpp, docked_panels.cpp, draw_image.cpp, emplace.cpp, form_background_image.cpp, form_resize.cpp, form_show.cpp, images2.cpp, images3.cpp, point.cpp, process_form.cpp, system_sound.cpp, test_forms.cpp, track_bar2.cpp, tutorial_button.cpp, and user_control.cpp.
|
| object ()=default |
| Create a new instance of the ultimate base class object.
|
|
virtual size_t | get_hash_code () const noexcept |
| Serves as a hash function for a particular type.
|
|
virtual type_object | get_type () const noexcept |
| Gets the type of the current instance.
|
|
template<typename object_t > |
xtd::uptr< object_t > | memberwise_clone () const |
| Creates a shallow copy of the current object.
|
|
virtual bool | equals (const size &) const noexcept=0 |
| Indicates whether the current object is equal to another object of the same type.
|
|
template<typename object_a_t , typename object_b_t > |
static bool | equals (const object_a_t &object_a, const object_b_t &object_b) noexcept |
| Determines whether the specified object instances are considered equal.
|
|
template<typename object_a_t , typename object_b_t > |
static bool | reference_equals (const object_a_t &object_a, const object_b_t &object_b) noexcept |
| Determines whether the specified object instances are the same instance.
|
|
◆ size() [1/3]
xtd::drawing::size::size |
( |
| ) |
|
|
default |
Initializes a new instance of the xtd::drawing::size class that has a Height and Width value of 0.
◆ size() [2/3]
◆ size() [3/3]
xtd::drawing::size::size |
( |
int32 |
width, |
|
|
int32 |
height |
|
) |
| |
|
noexcept |
Initializes a new instance of the xtd::drawing::size class from the specified dimensions.
- Parameters
-
◆ height() [1/2]
int32 xtd::drawing::size::height |
( |
| ) |
const |
|
noexcept |
◆ height() [2/2]
void xtd::drawing::size::height |
( |
int32 |
value | ) |
|
|
noexcept |
◆ is_empty()
bool xtd::drawing::size::is_empty |
( |
| ) |
const |
|
noexcept |
Tests whether this xtd::drawing::size class has xtd::drawing::size_fwidth and xtd::drawing::size_fheight of 0.
- Returns
- Returns true when this xtd::drawing::size class has both a xtd::drawing::size::width and xtd::drawing::size::height of 0; otherwise, false.
◆ width() [1/2]
int32 xtd::drawing::size::width |
( |
| ) |
const |
|
noexcept |
◆ width() [2/2]
void xtd::drawing::size::width |
( |
int32 |
value | ) |
|
|
noexcept |
◆ to_string()
◆ add()
static size xtd::drawing::size::add |
( |
const size & |
size1, |
|
|
const size & |
size2 |
|
) |
| |
|
staticnoexcept |
◆ ceiling()
static size xtd::drawing::size::ceiling |
( |
const size_f & |
value | ) |
|
|
staticnoexcept |
◆ round()
static size xtd::drawing::size::round |
( |
const size_f & |
value | ) |
|
|
staticnoexcept |
◆ subtract()
◆ truncate()
static size xtd::drawing::size::truncate |
( |
const size_f & |
value | ) |
|
|
staticnoexcept |
◆ operator+()
◆ operator+=()
◆ operator-()
◆ operator-=()
◆ equals() [1/2]
virtual bool xtd::object::equals |
( |
const object & |
obj | ) |
const |
|
virtualnoexcept |
Determines whether the specified object is equal to the current object.
- Parameters
-
obj | The object to compare with the current object. |
- Returns
- true if the specified object is equal to the current object. otherwise, false.
- Examples
- The following code example compares the current instance with another object.
#include <xtd/console>
auto main() -> int {
auto object1 = new_ptr<object>();
auto object2 = new_ptr<object>();
auto object3 = object2;
object3 = object1;
}
static void write_line()
Writes the current line terminator to the standard output stream using the specified format informati...
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.h:10
Reimplemented from xtd::object.
◆ equals() [2/2]
template<typename object_a_t , typename object_b_t >
static bool xtd::object::equals |
( |
const object_a_t & |
object_a, |
|
|
const object_b_t & |
object_b |
|
) |
| |
|
inlinestaticnoexcept |
Determines whether the specified object instances are considered equal.
- Parameters
-
object_a | The first object to compare. |
object_b | The second object to compare. |
- Returns
- true if object_a is the same instance as object_b or if both are null references or if object_a(object_b) returns true. otherwise, false.
- Examples
- The following code example compares different objects.
#include <xtd/console>
auto main() -> int {
string s1 = "Tom";
string s2 = "Carol";
s1 = "Tom";
s2 = "Tom";
s1 = "";
s2 = "Tom";
s1 = "Carol";
s2 = "";
s1 = "";
s2 = "";
}
virtual bool equals(const object &obj) const noexcept
Determines whether the specified object is equal to the current object.
◆ empty
Gets a xtd::drawing::size class that has a Height and Width value of 0. This field is constant.
The documentation for this class was generated from the following file:
- xtd.drawing/include/xtd/drawing/size.h