[corlib] Update ValueTuple implementation
[mono.git] / mcs / class / referencesource / System.Activities.Presentation / System.Activities.Presentation / System / Activities / Presentation / FreeFormEditing / AutoConnectDirections.cs
1 //----------------------------------------------------------------
2 // <copyright company="Microsoft Corporation">
3 //     Copyright (c) Microsoft Corporation.  All rights reserved.
4 // </copyright>
5 //----------------------------------------------------------------
6
7 namespace System.Activities.Presentation.FreeFormEditing
8 {
9     /// <summary>
10     /// Defines to which direction should the auto connection be allowed
11     /// </summary>
12     [Flags]
13     internal enum AutoConnectDirections
14     {
15         /// <summary>
16         /// Invalid direction
17         /// </summary>
18         None = 0,
19
20         /// <summary>
21         /// Left direction
22         /// </summary>
23         Left = 1,
24
25         /// <summary>
26         /// Right direction
27         /// </summary>
28         Right = 2,
29
30         /// <summary>
31         /// Top direction
32         /// </summary>
33         Top = 4,
34
35         /// <summary>
36         /// Bottom direction
37         /// </summary>
38         Bottom = 8
39     }
40 }