20 references to SnapDirection
System.Windows.Forms.Design (20)
System\Windows\Forms\Design\Behavior\ToolboxItemSnapLineBehavior.cs (12)
110ToolboxSnapDragDropEventArgs.SnapDirection snapDirections = ToolboxSnapDragDropEventArgs.SnapDirection.None; 131snapDirections |= ToolboxSnapDragDropEventArgs.SnapDirection.Left; 137snapDirections |= ToolboxSnapDragDropEventArgs.SnapDirection.Right; 149snapDirections |= ToolboxSnapDragDropEventArgs.SnapDirection.Top; 155snapDirections |= ToolboxSnapDragDropEventArgs.SnapDirection.Bottom; 171snapDirections |= ToolboxSnapDragDropEventArgs.SnapDirection.Top; 177snapDirections |= ToolboxSnapDragDropEventArgs.SnapDirection.Bottom; 189snapDirections |= ToolboxSnapDragDropEventArgs.SnapDirection.Left; 195snapDirections |= ToolboxSnapDragDropEventArgs.SnapDirection.Right; 214snapDirections |= ToolboxSnapDragDropEventArgs.SnapDirection.Left; 220snapDirections |= ToolboxSnapDragDropEventArgs.SnapDirection.Top;
System\Windows\Forms\Design\Behavior\ToolboxSnapDragDropEventArgs.cs (2)
21public ToolboxSnapDragDropEventArgs(SnapDirection snapDirections, Point offset, DragEventArgs origArgs) 32public SnapDirection SnapDirections { get; }
System\Windows\Forms\Design\DesignerUtils.cs (6)
572if ((e.SnapDirections & ToolboxSnapDragDropEventArgs.SnapDirection.Top) != 0) 576else if ((e.SnapDirections & ToolboxSnapDragDropEventArgs.SnapDirection.Bottom) != 0) 584if ((e.SnapDirections & ToolboxSnapDragDropEventArgs.SnapDirection.Left) != 0) 588else if ((e.SnapDirections & ToolboxSnapDragDropEventArgs.SnapDirection.Right) != 0) 596if ((e.SnapDirections & ToolboxSnapDragDropEventArgs.SnapDirection.Left) != 0) 601else if ((e.SnapDirections & ToolboxSnapDragDropEventArgs.SnapDirection.Right) != 0)