Removing Tizen.Xamarin.Forms.Extensions
[profile/tv/apps/dotnet/mediahub.git] / TVMediaHub / TVMediaHub.Tizen / Extensions / ContextPopupDirection.cs
1 namespace Tizen.Xamarin.Forms.Extension
2 {
3     /// <summary>
4     /// Enumeration for the direction of a ContextPopup.
5     /// </summary>
6     public enum ContextPopupDirection
7     {
8         /// <summary>
9         /// The down ContextPopup direction.
10         /// </summary>
11         Down,
12
13         /// <summary>
14         /// The right ContextPopup direction.
15         /// </summary>
16         Right,
17
18         /// <summary>
19         /// The left ContextPopup direction.
20         /// </summary>
21         Left,
22
23         /// <summary>
24         /// The up ContextPopup direction.
25         /// </summary>
26         Up,
27     }
28 }