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