Files
2026-06-04 11:42:34 +02:00

20 lines
682 B
C#

using System;
namespace System.ComponentModel
{
/// <summary>Specifies the browsable state of a property or method from within an editor.</summary>
// Token: 0x0200007B RID: 123
public enum EditorBrowsableState
{
/// <summary>The property or method is always browsable from within an editor.</summary>
// Token: 0x0400016F RID: 367
Always,
/// <summary>The property or method is never browsable from within an editor.</summary>
// Token: 0x04000170 RID: 368
Never,
/// <summary>The property or method is a feature that only advanced users should see. An editor can either show or hide such properties.</summary>
// Token: 0x04000171 RID: 369
Advanced
}
}