Class ShadowBase
Definition
- Assembly:
- Tizen.NUI.dll
The base class to describe basic shadow.
C#
Copy
public abstract class ShadowBase
- Inheritance
-
objectShadow
Base
- Derived
Properties
View Source
Extents
The shadow will extend its size by specified amount of length.
If the value is negative then the shadow will shrink.
For example, when View's size is (100, 100) and the Shadow's Extents is (5, -5),
the output shadow will have size (105, 95).
Declaration
C#
Copy
public Vector2 Extents { get; }
Property Value
Type | Description |
---|---|
Vector2 |
Declaration
C#
Copy
public Vector2 Offset { get; }
Property Value
Type | Description |
---|---|
Vector2 |
Methods
Declaration
C#
Copy
public override bool Equals(object other)
Parameters
Type | Name | Description |
---|---|---|
object | other |
Returns
Type | Description |
---|---|
bool |
Overrides
object.Equals(object)
Operators
Declaration
C#
Copy
public static bool operator ==(ShadowBase shadow1, ShadowBase shadow2)
Parameters
Type | Name | Description |
---|---|---|
Shadow |
shadow1 | |
Shadow |
shadow2 |
Returns
Type | Description |
---|---|
bool |
Declaration
C#
Copy
public static bool operator !=(ShadowBase shadow1, ShadowBase shadow2)
Parameters
Type | Name | Description |
---|---|---|
Shadow |
shadow1 | |
Shadow |
shadow2 |
Returns
Type | Description |
---|---|
bool |