This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,19 @@
using System;
namespace System.ComponentModel
{
/// <summary>Defines identifiers that indicate the type of a refresh of the Properties window.</summary>
// Token: 0x020000BD RID: 189
public enum RefreshProperties
{
/// <summary>The properties should be requeried and the view should be refreshed.</summary>
// Token: 0x040001DA RID: 474
All = 1,
/// <summary>No refresh is necessary.</summary>
// Token: 0x040001DB RID: 475
None = 0,
/// <summary>The view should be refreshed.</summary>
// Token: 0x040001DC RID: 476
Repaint = 2
}
}