[reflection] Coop handles icalls in System.Reflection and System.RuntimeTypeHandle...
[mono.git] / mcs / class / referencesource / System.Activities.Presentation / System.Activities.Presentation / System / Activities / Presentation / Base / Core / Internal / PropertyEditing / PropertySelectionMode.cs
1 //----------------------------------------------------------------
2 // Copyright (c) Microsoft Corporation.  All rights reserved.
3 //----------------------------------------------------------------
4 namespace System.Activities.Presentation.Internal.PropertyEditing 
5 {
6     using System;
7
8     // <summary>
9     // SelectionMode used for property selection.  'Default' means that with each object selection change,
10     // we try to figure out the default property to select and we select it.  'Sticky' means that the user
11     // has made some conscious decision as to what property should be selected and we try to preserve it
12     // across object selection changes.
13     // </summary>
14     internal enum PropertySelectionMode 
15     {
16         Default,
17         Sticky
18     }
19 }