Class TimePeriod

Definition

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

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
System.Object
TimePeriod
Implements
System.IDisposable

Constructors

View Source

TimePeriod(Int32)

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

Declaration
C#
Copy
public TimePeriod(int durationMilliSeconds)
Parameters
Type Name Description
Int32 durationMilliSeconds
API Level: 9
View Source

TimePeriod(Int32, Int32)

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
Int32 delayMilliSeconds
Int32 durationMilliSeconds
API Level: 9

Properties

View Source

DelayMilliseconds

A delay before the time period in milliseconds

Declaration
C#
Copy
public int DelayMilliseconds { get; set; }
Property Value
Type Description
Int32
API Level: 9
View Source

DurationMilliseconds

The duration of the time period in milliseconds

Declaration
C#
Copy
public int DurationMilliseconds { get; set; }
Property Value
Type Description
Int32
API Level: 9

Implements

System.IDisposable