Release 4.0.0-preview1-00051
[platform/core/csapi/tizenfx.git] / src / Tizen.Applications.AttachPanel / Tizen.Applications.AttachPanel / EventType.cs
1 namespace Tizen.Applications.AttachPanel
2 {
3     /// <summary>
4     /// Enumeration for the attach panel event.
5     /// </summary>
6     public enum EventType
7     {
8         /// <summary>
9         /// Attach panel starts the effect to show
10         /// </summary>
11         ShowStart = 1,
12         /// <summary>
13         /// Attach panel finishes the effect to show
14         /// </summary>
15         ShowFinish,
16         /// <summary>
17         /// Attach panel starts the effect to hide the panel
18         /// </summary>
19         HideStart,
20         /// <summary>
21         /// Attach panel finishes the effect to hide the panel
22         /// </summary>
23         HideFinish,
24     }
25 }