Enum NUIGadgetLifecycleState

Definition

Namespace:
Tizen.NUI
Assembly:
Tizen.NUI.Gadget.dll
API Level:
10

Enumeration for the lifecycle state of the NUIGadget.

C#
Copy
public enum NUIGadgetLifecycleState : int
Name Description
Created

The created state. This state is set when the gadget is created. The 'OnCreate()' method of the NUIGadget is called.

Destroyed

The destroyed state. This state is set when the gadget is destroyed. The 'OnDestroy()' method of the NUIGadget is called.

Initialized

The initialized state. This state is set when the gadget is initialized. The constructor of the NUIGadget is called.

Paused

The paused state. This state is set when the gadget is paused. The 'OnPause()' method of the NUIGadget is called.

Resumed

The resumed state. This state is set when the gadget is resumed. The 'OnResume()' method of the NUIGadget is called.

Extension Methods