Represents a shadow within a xtd::forms::shadow_label control.
- Header
#include <xtd/forms/shadow>
- Namespace
- xtd::forms
- Library
- xtd.forms
|
| shadow () |
| Initializes a new instance of the xtd::forms::shadow class.
|
|
| shadow (int32 x, int32 y) |
| Initializes a new instance of the xtd::forms::shadow class with the specified offset x, and offset y.
|
|
| shadow (int32 x, int32 y, int32 radius) |
| Initializes a new instance of the xtd::forms::shadow class with the specified offset x, offset y, and radius.
|
|
| shadow (int32 x, int32 y, const xtd::drawing::color &color) |
| Initializes a new instance of the xtd::forms::shadow class with the specified offset x, offset y and color.
|
|
| shadow (int32 x, int32 y, int32 radius, const xtd::drawing::color &color) |
| Initializes a new instance of the xtd::forms::shadow class with the specified offset x, offset y, and color.
|
|
| shadow (const xtd::drawing::point &offset) |
| Initializes a new instance of the xtd::forms::shadow class with the specified offset point.
|
|
| shadow (const xtd::drawing::point &offset, int32 radius) |
| Initializes a new instance of the xtd::forms::shadow class with the specified offset point, and radius.
|
|
| shadow (const xtd::drawing::point &offset, const xtd::drawing::color &color) |
| Initializes a new instance of the xtd::forms::shadow class with the specified offset point, and color.
|
|
| shadow (const xtd::drawing::point &offset, int32 radius, const xtd::drawing::color &color) |
| Initializes a new instance of the xtd::forms::shadow class with the specified offset point, radius, and color.
|
|
|
bool | equals (const shadow &other) const noexcept override |
|
virtual bool | equals (const object &obj) const noexcept |
| Determines whether the specified object is equal to the current object.
|
|
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.
|
|
|
| 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 xtd::string | to_string () const noexcept |
| Returns a xtd::string that represents the current object.
|
|
virtual bool | equals (const shadow &) 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.
|
|
◆ shadow() [1/9]
xtd::forms::shadow::shadow |
( |
| ) |
|
◆ shadow() [2/9]
Initializes a new instance of the xtd::forms::shadow class with the specified offset x, and offset y.
- Parameters
-
x | The shadow offset x in pixels. |
y | The shadow offset y in pixels. |
◆ shadow() [3/9]
Initializes a new instance of the xtd::forms::shadow class with the specified offset x, offset y, and radius.
- Parameters
-
x | The shadow offset x in pixels. |
y | The shadow offset y in pixels. |
radius | The shadow blurring radius. |
◆ shadow() [4/9]
Initializes a new instance of the xtd::forms::shadow class with the specified offset x, offset y and color.
- Parameters
-
x | The shadow offset x in pixels. |
y | The shadow offset y in pixels. |
◆ shadow() [5/9]
Initializes a new instance of the xtd::forms::shadow class with the specified offset x, offset y, and color.
- Parameters
-
x | The shadow offset x in pixels. |
y | The shadow offset y in pixels. |
radius | The shadow blurring radius. |
◆ shadow() [6/9]
Initializes a new instance of the xtd::forms::shadow class with the specified offset point.
- Parameters
-
offset | The shadow offset point in pixels. |
◆ shadow() [7/9]
Initializes a new instance of the xtd::forms::shadow class with the specified offset point, and radius.
- Parameters
-
offset | The shadow offset point in pixels. |
radius | The shadow blurring radius. |
◆ shadow() [8/9]
Initializes a new instance of the xtd::forms::shadow class with the specified offset point, and color.
- Parameters
-
offset | The shadow offset point in pixels. |
color | The shadow color. |
◆ shadow() [9/9]
Initializes a new instance of the xtd::forms::shadow class with the specified offset point, radius, and color.
- Parameters
-
offset | The shadow offset point in pixels. |
radius | The shadow blurring radius. |
color | The shadow color. |
◆ color() [1/2]
Gets the shadow color.
- Returns
- The shadow color.
◆ color() [2/2]
Sets the shadow color.
- Parameters
-
- Returns
- This current instance.
◆ offset() [1/2]
Gets the shadow offset in pixels.
- Returns
- The shadow offset.
◆ offset() [2/2]
Sets the shadow offset point in pixels.
- Parameters
-
value | The shadow offset point. |
- Returns
- This current instance.
◆ radius() [1/2]
int32 xtd::forms::shadow::radius |
( |
| ) |
const |
|
noexcept |
Gets the shadow blurring radius in pixels.
- Returns
- The shadow blurring radius.
◆ radius() [2/2]
Sets the shadow blurring radius in pixels.
- Parameters
-
value | The shadow blurring radius. |
- Returns
- This current instance.
◆ x() [1/2]
int32 xtd::forms::shadow::x |
( |
| ) |
const |
|
noexcept |
Gets the shadow offset x in pixels.
- Returns
- The shadow offset x.
◆ x() [2/2]
Sets the shadow offset x in pixels.
- Parameters
-
value | The shadow offset x. |
- Returns
- This current instance.
◆ y() [1/2]
int32 xtd::forms::shadow::y |
( |
| ) |
const |
|
noexcept |
Gets the shadow offset y in pixels.
- Returns
- The shadow offset y.
◆ y() [2/2]
Sets the shadow offset y in pixels.
- Parameters
-
value | The shadow offset y. |
- Returns
- This current instance.
◆ 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.
The documentation for this class was generated from the following file: