//---------------------------------------------------------------- // // Copyright (c) Microsoft Corporation. All rights reserved. // //---------------------------------------------------------------- namespace System.Activities.Presentation.FreeFormEditing { using System.Windows; /// /// Defines the interface for the container that enables auto-connect /// internal interface IAutoConnectContainer { void DoAutoConnect(DragEventArgs e, UIElement targetElement, AutoConnectDirections direction); AutoConnectDirections GetDirectionsAllowed(DragEventArgs e, UIElement targetElement); } }