This public enumerated type defines the optional visible items in the
help file.
Namespace: SandcastleBuilder.UtilsAssembly: SandcastleBuilder.Utils (in SandcastleBuilder.Utils.dll) Version: 1.9.3.0
Syntax
| C# |
|---|
[SerializableAttribute] [FlagsAttribute] public enum VisibleItems |
| Visual Basic |
|---|
<SerializableAttribute> _ <FlagsAttribute> _ Public Enumeration VisibleItems |
Members
| Member name | Value | Description | |
|---|---|---|---|
| None | 0 | None of the optional items are visible. | |
| Attributes | 1 | Document attributes. | |
| ExplicitInterfaceImplementations | 2 | Document explicit interface implementations. | |
| InheritedMembers | 4 | Document inherited members. | |
| InheritedFrameworkMembers | 8 | Document inherited framework members. For this to work, InheritedMembers must also be enabled. | |
| Internals | 16 | Document internal members. | |
| Privates | 32 | Document private members. | |
| Protected | 64 | Document protected members. | |
| ProtectedInternalAsProtected | 128 | Document "protected internal" members as "protected" only. | |
| SealedProtected | 256 | Document protected members of sealed classes. For this to work, Protected must also be enabled. | |
| PrivateFields | 512 | Document private fields. For this to work, Privates must also be enabled. | |
| InheritedFrameworkPrivateMembers | 1024 | Document inherited private framework members. For this to work InheritedFrameworkMembers must also be enabled. | |
| InheritedFrameworkInternalMembers | 2048 | Document inherited internal framework members. For this to work InheritedFrameworkMembers must also be enabled. |