29 lines
1.2 KiB
C#
29 lines
1.2 KiB
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.ComponentModel
|
|
{
|
|
/// <summary>Defines identifiers that indicate the persistence scope of a tab in the Properties window.</summary>
|
|
// Token: 0x020001B4 RID: 436
|
|
[Token(Token = "0x20001B4")]
|
|
public enum PropertyTabScope
|
|
{
|
|
/// <summary>This tab is added to the Properties window and cannot be removed.</summary>
|
|
// Token: 0x04000641 RID: 1601
|
|
[Token(Token = "0x4000641")]
|
|
Static,
|
|
/// <summary>This tab is added to the Properties window and can only be removed explicitly by a parent component.</summary>
|
|
// Token: 0x04000642 RID: 1602
|
|
[Token(Token = "0x4000642")]
|
|
Global,
|
|
/// <summary>This tab is specific to the current document. This tab is added to the Properties window and is removed when the currently selected document changes.</summary>
|
|
// Token: 0x04000643 RID: 1603
|
|
[Token(Token = "0x4000643")]
|
|
Document,
|
|
/// <summary>This tab is specific to the current component. This tab is added to the Properties window for the current component only and is removed when the component is no longer selected.</summary>
|
|
// Token: 0x04000644 RID: 1604
|
|
[Token(Token = "0x4000644")]
|
|
Component
|
|
}
|
|
}
|