[amd64/tramp] hide interpreter specific trampoline behind ifdef
[mono.git] / mcs / class / referencesource / System.Activities.Presentation / System.Activities.Presentation / System / Activities / Presentation / Base / Interaction / Model / CreateOptions.cs
1
2 namespace System.Activities.Presentation.Model {
3
4     using System;
5
6     /// <summary>
7     /// The CreateOptions flags are passed into ModelFactory
8     /// to dictate how to create a new item.  
9     /// </summary>
10     [Flags]
11     public enum CreateOptions {
12
13         /// <summary>
14         /// Just creates the object and does not perform
15         /// any operations on it.  This is the default.
16         /// </summary>
17         None = 0x00,
18
19         /// <summary>
20         /// Creates the item and asks the object to perform
21         /// any default initialization.  This flag is generally
22         /// passed in when a new control or object is being
23         /// created by a user.
24         /// </summary>
25         InitializeDefaults = 0x01
26     }
27 }