using System;
namespace System.ComponentModel
{
/// Specifies values to indicate whether a property can be bound to a data element or another property.
// Token: 0x0200005A RID: 90
public enum BindableSupport
{
/// The property is not bindable at design time.
// Token: 0x04000123 RID: 291
No,
/// The property is bindable at design time.
// Token: 0x04000124 RID: 292
Yes,
/// The property is set to the default.
// Token: 0x04000125 RID: 293
Default
}
}