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#Copypublic class TransitionGroup : TransitionBase
- Inheritance
Constructors
Declaration
C#Copypublic TransitionGroup()
Properties
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#Copypublic bool StepTransition { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
UseGroupAlphaFunction
Set/Get whether the child Transitions are affected by the AlphaFunction of this TransitionGroup
Declaration
C#Copypublic bool UseGroupAlphaFunction { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
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#Copypublic bool UseGroupTimePeriod { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
Methods
Declaration
C#Copypublic void AddTransition(TransitionBase transition)
Parameters
Type | Name | Description |
---|---|---|
TransitionBase | transition |