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 xtd::object &obj) const noexcept override |
| | Determines whether the specified object is equal to the current object.
|
| |
| bool | equals (const shadow &other) const noexcept override |
| | Determines whether the specified object is equal to the current object.
|
| |
| xtd::size | get_hash_code () const noexcept override |
| | Serves as a hash function for a particular type.
|
| |
|
| | object ()=default |
| | Create a new instance of the ultimate base class object.
|
| |
| virtual type_object | get_type () const noexcept |
| | Gets the type of the current instance.
|
| |
| template<class object_t> |
| xtd::unique_ptr_object< 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<class object_a_t, class 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<class object_a_t, class 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]
| bool xtd::forms::shadow::equals |
( |
const xtd::object & | obj | ) |
const |
|
overridevirtualnoexcept |
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.
Reimplemented from xtd::object.
◆ equals() [2/2]
| bool xtd::forms::shadow::equals |
( |
const shadow & | other | ) |
const |
|
overridenoexcept |
Determines whether the specified object is equal to the current object.
- Parameters
-
| other | The object to compare with the current object. |
- Returns
true if the specified object is equal to the current object. otherwise, false.
◆ get_hash_code()
| xtd::size xtd::forms::shadow::get_hash_code |
( |
| ) |
const |
|
overridevirtualnoexcept |
Serves as a hash function for a particular type.
- Returns
- A hash code for the current object.
Reimplemented from xtd::object.
The documentation for this class was generated from the following file: