Definition
- Namespace:
- Tizen.NUI
- Assembly:
- Tizen.NUI.dll
- API Level:
- 6
Parts of the transition that can be configured to provide a custom effect.
public class TransitionComponents : IDisposable
- Inheritance
-
Constructors
View Source
TransitionComponents()
TransitionComponents default constructor.
Declaration
public TransitionComponents()
API Level: 6
View Source
TransitionComponents(Int32, Int32, AlphaFunction)
TransitionComponents constructor. Stores delay, duration and AlphaFunction.
Declaration
public TransitionComponents(int delay, int duration, AlphaFunction alphaFunction)
Parameters
Type |
Name |
Description |
Int32 |
delay |
The delay before the animator starts.
|
Int32 |
duration |
the duration of the animator.
|
AlphaFunction |
alphaFunction |
alpha function to use .
|
API Level: 6
Fields
View Source
AlphaFunction
Get, Set the function to alter the transition path over time.
Declaration
public AlphaFunction AlphaFunction
Field Value
API Level: 6
View Source
Delay
Get, Set the delay before the transition executes. Milliseconds.
Declaration
Field Value
API Level: 6
View Source
Duration
Get, Set the time transition should execute for . Milliseconds.
Declaration
Field Value
API Level: 6
Methods
Declaration
Declaration
protected virtual void Dispose(bool disposing)
Parameters
Type |
Name |
Description |
Boolean |
disposing |
|
View Source
GetAlphaFunction()
Get the function to alter the transition path over time.
Declaration
public AlphaFunction GetAlphaFunction()
Returns
View Source
GetDelay()
Get the delay before the transition executes. Milliseconds.
Declaration
Returns
View Source
GetDuration()
Get the time transition should execute for . Milliseconds.
Declaration
Returns
View Source
SetAlphaFunction(AlphaFunction)
Set the function to alter the transition path over time.
Declaration
public void SetAlphaFunction(AlphaFunction alphaFunction)
Parameters
View Source
SetDelay(Int32)
Set the delay before the transition executes. Milliseconds.
Declaration
public void SetDelay(int delay)
Parameters
Type |
Name |
Description |
Int32 |
delay |
|
View Source
SetDuration(Int32)
Set the time transition should execute for . Milliseconds.
Declaration
public void SetDuration(int duration)
Parameters
Type |
Name |
Description |
Int32 |
duration |
|
Extension Methods