using System; using Cpp2IlInjected; namespace System.ComponentModel { /// Specifies values to indicate whether a property can be bound to a data element or another property. // Token: 0x020000E9 RID: 233 [Token(Token = "0x20000E9")] public enum BindableSupport { /// The property is not bindable at design time. // Token: 0x0400044B RID: 1099 [Token(Token = "0x400044B")] No, /// The property is bindable at design time. // Token: 0x0400044C RID: 1100 [Token(Token = "0x400044C")] Yes, /// The property is set to the default. // Token: 0x0400044D RID: 1101 [Token(Token = "0x400044D")] Default } }