Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

25 lines
696 B
C#

using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Defines identifiers that indicate the type of a refresh of the Properties window.</summary>
// Token: 0x020001B1 RID: 433
[Token(Token = "0x20001B1")]
public enum RefreshProperties
{
/// <summary>No refresh is necessary.</summary>
// Token: 0x04000639 RID: 1593
[Token(Token = "0x4000639")]
None,
/// <summary>The properties should be requeried and the view should be refreshed.</summary>
// Token: 0x0400063A RID: 1594
[Token(Token = "0x400063A")]
All,
/// <summary>The view should be refreshed.</summary>
// Token: 0x0400063B RID: 1595
[Token(Token = "0x400063B")]
Repaint
}
}