| VisibleItems Enumeration |
This public enumerated type defines the optional visible items in the help file
Namespace: SandcastleBuilder.UtilsAssembly: SandcastleBuilder.Utils (in SandcastleBuilder.Utils.dll) Version: 2014.11.22.0
Syntax [SerializableAttribute]
[FlagsAttribute]
public enum VisibleItems
<SerializableAttribute>
<FlagsAttribute>
Public Enumeration VisibleItems
[SerializableAttribute]
[FlagsAttribute]
public enum class VisibleItems
[<SerializableAttribute>]
[<FlagsAttribute>]
type VisibleItems
Members
| Member name | Value | Description |
---|
| None | 0 | None of the optional items are documented. Only public types and members will be documented. |
| 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. |
| InheritedFrameworkInternalMembers | 16 | Document inherited internal framework members. For this to work InheritedFrameworkMembers
must also be enabled. |
| InheritedFrameworkPrivateMembers | 32 | Document inherited private framework members. For this to work InheritedFrameworkMembers
must also be enabled. |
| Internals | 64 | Document internal members. |
| Privates | 128 | Document private members. |
| PrivateFields | 256 | Document private fields. For this to work, Privates must also be enabled. |
| Protected | 512 | Document protected members. |
| SealedProtected | 1024 | Document protected members of sealed classes. For this to work, Protected must also
be enabled. |
| ProtectedInternalAsProtected | 2048 | Document "protected internal" members as "protected" only. |
| NoPIATypes | 4096 | Document no-PIA (Primary Interop Assembly) embedded COM types. |
See Also