Class TimePeriod
Definition
- 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
public class TimePeriod : Disposable, IDisposable
- Inheritance
- Implements
-
System.IDisposable
Constructors
View SourceTimePeriod(int, int)
The constructor. Creates an time period object with the user-defined alpha function.
Declaration
public TimePeriod(int delayMilliSeconds, int durationMilliSeconds)
Parameters
Type | Name | Description |
---|---|---|
int | delayMilliSeconds | |
int | durationMilliSeconds |
TimePeriod(int)
The constructor. Creates an time period object with the user-defined alpha function.
Declaration
public TimePeriod(int durationMilliSeconds)
Parameters
Type | Name | Description |
---|---|---|
int | durationMilliSeconds |
Properties
View SourceDelayMilliseconds
A delay before the time period in milliseconds
Declaration
public int DelayMilliseconds { get; set; }
Property Value
Type | Description |
---|---|
int |
DurationMilliseconds
The duration of the time period in milliseconds
Declaration
public int DurationMilliseconds { get; set; }
Property Value
Type | Description |
---|---|
int |
Implements
System.IDisposable