File: System\ComponentModel\Design\InheritanceLevel.cs
Web Access
Project: src\src\libraries\System.ComponentModel.TypeConverter\src\System.ComponentModel.TypeConverter.csproj (System.ComponentModel.TypeConverter)
// 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,
    }
}