Class TransitionGroup

Definition

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

TransitionGroup class is a cluster of properties to use multiple Transitions on a target. FadeTransition, ScaleTransition, and SlideTransition can be added on this group with AddTransition method. The transitions can be started at the same time or can be started sequentially in order.

C#
Copy
public class TransitionGroup : TransitionBase
Inheritance
TransitionGroup

Constructors

View Source

TransitionGroup()

Create a FadeTransition for the View pair.

Declaration
C#
Copy
public TransitionGroup()

Properties

View Source

StepTransition

Set/Get whether the child Transitions are started sequentially or not. If StepTransition is true, the child Transitions starts sequentially with an interval of "TimePeriod.DurationMilliseconds/#ofChildTransitions".

Declaration
C#
Copy
public bool StepTransition { get; set; }
Property Value
Type Description
Boolean
View Source

UseGroupAlphaFunction

Set/Get whether the child Transitions are affected by the AlphaFunction of this TransitionGroup

Declaration
C#
Copy
public bool UseGroupAlphaFunction { get; set; }
Property Value
Type Description
Boolean
View Source

UseGroupTimePeriod

Set/Get whether the child Transitions are affected by the TimePeriod of this TransitionGroup If UseGroupTimePeriod is true, child Transitions wait for a TimePeriod.DelayMilliseconds before starting.

Declaration
C#
Copy
public bool UseGroupTimePeriod { get; set; }
Property Value
Type Description
Boolean

Methods

View Source

AddTransition(TransitionBase)

Adds a Transition to this TransitionGroup.

Declaration
C#
Copy
public void AddTransition(TransitionBase transition)
Parameters
Type Name Description
TransitionBase transition

Extension Methods