Class TextShadow

Definition

Namespace:
Tizen.NUI
Assembly:
Tizen.NUI.dll

The Text Shadow for TextLabel.

C#
Copy
public class TextShadow : ICloneable, IDisposable
Inheritance
TextShadow
Implements
IDisposable

Constructors

View Source

TextShadow(Color, Vector2, Single)

Constructor

Declaration
C#
Copy
public TextShadow(Color color, Vector2 offset, float blurRadius)
Parameters
Type Name Description
Color color
Vector2 offset
Single blurRadius

Properties

View Source

BlurRadius

The blur radius of the shadow of text.

Declaration
C#
Copy
public float BlurRadius { get; }
Property Value
Type Description
Single
View Source

Color

The color for the shadow of text.

Declaration
C#
Copy
public Color Color { get; }
Property Value
Type Description
Color
View Source

Offset

The offset for the shadow of text.

Declaration
C#
Copy
public Vector2 Offset { get; }
Property Value
Type Description
Vector2

Methods

View Source

Clone()

Deep copy method

Declaration
C#
Copy
public object Clone()
Returns
Type Description
Object
View Source

Clone(TextShadow)

Deep copy method (static) This provides nullity check.

Declaration
C#
Copy
public static object Clone(TextShadow instance)
Parameters
Type Name Description
TextShadow instance
Returns
Type Description
Object
View Source

Dispose()

Declaration
C#
Copy
public void Dispose()
View Source

Dispose(Boolean)

Declaration
C#
Copy
protected virtual void Dispose(bool disposing)
Parameters
Type Name Description
Boolean disposing

Implements

IDisposable

Extension Methods