Merge remote-tracking branch 'github/master' into tizen
[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     /// <since_tizen> 4 </since_tizen>
7     public enum EventType
8     {
9         /// <summary>
10         /// Attach panel starts the effect to show.
11         /// </summary>
12         ShowStart = 1,
13
14         /// <summary>
15         /// Attach panel finishes the effect to show.
16         /// </summary>
17         ShowFinish,
18
19         /// <summary>
20         /// Attach panel starts the effect to hide the panel.
21         /// </summary>
22         HideStart,
23
24         /// <summary>
25         /// Attach panel finishes the effect to hide the panel.
26         /// </summary>
27         HideFinish,
28     }
29 }