1 //------------------------------------------------------------------------------
2 // <copyright file="InheritanceLevel.cs" company="Microsoft">
3 //     Copyright (c) Microsoft Corporation.  All rights reserved.
4 // </copyright>
5 //------------------------------------------------------------------------------
6 
7 /*
8  */
9 namespace System.ComponentModel {
10 
11     /// <devdoc>
12     ///    <para>
13     ///       Specifies
14     ///       numeric IDs for different inheritance levels.
15     ///    </para>
16     /// </devdoc>
17     public enum InheritanceLevel {
18 
19         /// <devdoc>
20         ///      Indicates that the object is inherited.
21         /// </devdoc>
22         Inherited = 1,
23 
24         /// <devdoc>
25         ///    <para>
26         ///       Indicates that the object is inherited, but has read-only access.
27         ///    </para>
28         /// </devdoc>
29         InheritedReadOnly = 2,
30 
31         /// <devdoc>
32         ///      Indicates that the object is not inherited.
33         /// </devdoc>
34         NotInherited = 3,
35     }
36 }
37 
38