Class TimePeriod

Definition

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

TimePeriod is used to define delay and duration of a process such as Transition. TimePeriod is composed of Delay and Duration in milliseconds

C#
Copy
public class TimePeriod : Disposable, IDisposable
Inheritance
object
TimePeriod
Implements
System.IDisposable

Constructors

View Source

TimePeriod(int, int)

The constructor. Creates an time period object with the user-defined alpha function.

Declaration
C#
Copy
public TimePeriod(int delayMilliSeconds, int durationMilliSeconds)
Parameters
Type Name Description
int delayMilliSeconds
int durationMilliSeconds
View Source

TimePeriod(int)

The constructor. Creates an time period object with the user-defined alpha function.

Declaration
C#
Copy
public TimePeriod(int durationMilliSeconds)
Parameters
Type Name Description
int durationMilliSeconds

Properties

View Source

DelayMilliseconds

A delay before the time period in milliseconds

Declaration
C#
Copy
public int DelayMilliseconds { get; set; }
Property Value
Type Description
int
View Source

DurationMilliseconds

The duration of the time period in milliseconds

Declaration
C#
Copy
public int DurationMilliseconds { get; set; }
Property Value
Type Description
int

Implements

System.IDisposable