Files
Dec2017-Script-Dump/System/ComponentModel/BindableSupport.cs
T
2026-06-04 11:42:34 +02:00

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
}
}