Files
Aug2021-Cpp2IL-Dump/System/ComponentModel/BindableSupport.cs
T
2026-04-10 22:50:51 +02:00

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: 0x020000ED RID: 237
[Token(Token = "0x20000ED")]
public enum BindableSupport
{
/// <summary>The property is not bindable at design time.</summary>
// Token: 0x04000458 RID: 1112
[Token(Token = "0x4000458")]
No,
/// <summary>The property is bindable at design time.</summary>
// Token: 0x04000459 RID: 1113
[Token(Token = "0x4000459")]
Yes,
/// <summary>The property is set to the default.</summary>
// Token: 0x0400045A RID: 1114
[Token(Token = "0x400045A")]
Default
}
}