20 lines
560 B
C#
20 lines
560 B
C#
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
|
|
}
|
|
}
|