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