|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace System.ComponentModel
{
/// <summary>
/// Specifies numeric IDs for different inheritance levels.
/// </summary>
public enum InheritanceLevel
{
/// <summary>
/// Indicates that the object is inherited.
/// </summary>
Inherited = 1,
/// <summary>
/// Indicates that the object is inherited, but has read-only access.
/// </summary>
InheritedReadOnly = 2,
/// <summary>
/// Indicates that the object is not inherited.
/// </summary>
NotInherited = 3,
}
}
|