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
Inheritance
TimePeriod

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

Methods

View Source

ReleaseSwigCPtr(Runtime.InteropServices.HandleRef)

Declaration
C#
Copy
protected override void ReleaseSwigCPtr(Runtime.InteropServices.HandleRef swigCPtr)
Parameters
Type Name Description
Tizen.System.Runtime.InteropServices.HandleRef swigCPtr
Overrides

Extension Methods