Class ScaleTransition

Definition

Namespace:
Tizen.NUI
Assembly:
Tizen.NUI.dll
API Level:
9

ScaleTransition provides smoothly appearing/disappearing scale effects for target View. If this transition is for appearing, the View comes out with the scale factor applied and will be animated to its original scale. If this transition is for disappearing, the View starts at its original size and will finally become scaled by scale factor and vanishes.

C#
Copy
public class ScaleTransition : TransitionBase, IDisposable
Inheritance
System.Object
ScaleTransition
Implements
System.IDisposable

Constructors

View Source

ScaleTransition()

Create a ScaleTransition.

Declaration
C#
Copy
public ScaleTransition()
API Level: 9

Properties

View Source

ScaleFactor

Set/get Scale factor for this scale transition. If AppearingTransition, transition starts from scaled by the ScaleFactor and is animated to the original size. And if DisappearingTransition, transition is finished to the scaled state by the ScaleFactor.

Default ScaleFactor is Vector2(0.0f, 0.0f).

Declaration
C#
Copy
public Vector2 ScaleFactor { get; set; }
Property Value
Type Description
Vector2
API Level: 9

Implements

System.IDisposable