[Bluetooth][Non-ACR] Fix no data exception issue (#787)
[platform/core/csapi/tizenfx.git] / internals / src / EflSharp / EflSharp / efl / efl_ui_types.eot.cs
1 #pragma warning disable CS1591
2 using System;
3 using System.Runtime.InteropServices;
4 using System.Collections.Generic;
5 using System.Linq;
6 using System.ComponentModel;
7 namespace Efl { namespace Ui { 
8 /// <summary>Permitted directions for dragging objects.</summary>
9 public enum DragDir
10 {
11 /// <summary>Not draggable in any direction.</summary>
12 None = 0,
13 /// <summary>Draggable horizontally.</summary>
14 X = 1,
15 /// <summary>Draggable vertically.</summary>
16 Y = 2,
17 /// <summary>Draggable in both directions.</summary>
18 Xy = 3,
19 }
20 } }