[amd64/tramp] hide interpreter specific trampoline behind ifdef
[mono.git] / mcs / class / referencesource / System.Activities.Presentation / System.Activities.Presentation / System / Activities / Presentation / Base / Core / PropertyEditing / PropertyContainerEditMode.cs
1 namespace System.Activities.Presentation.PropertyEditing {
2
3     /// <summary>
4     /// Enum that defines the different edit modes a PropertyContainer can be in
5     /// </summary>
6     public enum PropertyContainerEditMode {
7         /// <summary>
8         /// Inline editor mode
9         /// </summary>
10         Inline,
11
12         /// <summary>
13         /// Extended editor, popped up over the property inspector
14         /// </summary>
15         ExtendedPopup,
16
17         /// <summary>
18         /// Extended editor, pinned into place within the property inspector
19         /// </summary>
20         ExtendedPinned,
21
22         /// <summary>
23         /// Dialog popup editor
24         /// </summary>
25         Dialog
26     }
27 }