//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ /* */ namespace System.ComponentModel { /// /// /// Specifies /// numeric IDs for different inheritance levels. /// /// public enum InheritanceLevel { /// /// Indicates that the object is inherited. /// Inherited = 1, /// /// /// Indicates that the object is inherited, but has read-only access. /// /// InheritedReadOnly = 2, /// /// Indicates that the object is not inherited. /// NotInherited = 3, } }