This commit is contained in:
niko
2026-04-11 22:19:20 +02:00
parent 45b857ff11
commit 8fc35183db
17034 changed files with 2863552 additions and 0 deletions
+41
View File
@@ -0,0 +1,41 @@
using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// <summary>Provides the base class for a custom component editor.</summary>
// Token: 0x020000EB RID: 235
[Token(Token = "0x20000EB")]
public abstract class ComponentEditor
{
/// <summary>Edits the component and returns a value indicating whether the component was modified.</summary>
/// <param name="component">The component to be edited.</param>
/// <returns>
/// <see langword="true" /> if the component was modified; otherwise, <see langword="false" />.</returns>
// Token: 0x06000598 RID: 1432 RVA: 0x000042A8 File Offset: 0x000024A8
[Token(Token = "0x6000598")]
[Address(RVA = "0x498180", Offset = "0x496F80", VA = "0x180498180")]
public bool EditComponent(object component)
{
return default(bool);
}
/// <summary>Edits the component and returns a value indicating whether the component was modified based upon a given context.</summary>
/// <param name="context">An optional context object that can be used to obtain further information about the edit.</param>
/// <param name="component">The component to be edited.</param>
/// <returns>
/// <see langword="true" /> if the component was modified; otherwise, <see langword="false" />.</returns>
// Token: 0x06000599 RID: 1433
[Token(Token = "0x6000599")]
[Address(Slot = "4")]
public abstract bool EditComponent(ITypeDescriptorContext context, object component);
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.ComponentEditor" /> class.</summary>
// Token: 0x0600059A RID: 1434 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600059A")]
[Address(RVA = "0x3F5100", Offset = "0x3F3F00", VA = "0x1803F5100")]
protected ComponentEditor()
{
}
}
}