#pragma warning disable CS1591 using System; using System.Runtime.InteropServices; using System.Collections.Generic; using System.Linq; using System.ComponentModel; namespace Efl { namespace Ui { /// Permitted directions for dragging objects. public enum DragDir { /// Not draggable in any direction. None = 0, /// Draggable horizontally. X = 1, /// Draggable vertically. Y = 2, /// Draggable in both directions. Xy = 3, } } }