25 lines
696 B
C#
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: 0x020001B5 RID: 437
|
|
[Token(Token = "0x20001B5")]
|
|
public enum RefreshProperties
|
|
{
|
|
/// <summary>No refresh is necessary.</summary>
|
|
// Token: 0x04000646 RID: 1606
|
|
[Token(Token = "0x4000646")]
|
|
None,
|
|
/// <summary>The properties should be requeried and the view should be refreshed.</summary>
|
|
// Token: 0x04000647 RID: 1607
|
|
[Token(Token = "0x4000647")]
|
|
All,
|
|
/// <summary>The view should be refreshed.</summary>
|
|
// Token: 0x04000648 RID: 1608
|
|
[Token(Token = "0x4000648")]
|
|
Repaint
|
|
}
|
|
}
|