Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Specifies options for a document in the running document table (RDT).
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop.12.0 (in Microsoft.VisualStudio.Shell.Interop.12.0.dll)
Syntax
'Declaration
<FlagsAttribute> _
Public Enumeration _VSRDTFLAGS4
[FlagsAttribute]
public enum _VSRDTFLAGS4
[FlagsAttribute]
public enum class _VSRDTFLAGS4
[<FlagsAttribute>]
type _VSRDTFLAGS4
public enum _VSRDTFLAGS4
Members
| Member name | Description | |
|---|---|---|
| RDT_PendingHierarchyInitialization | The document's hierarchy hasn't yet been initialized; it will be initialized on demand.
Several things can cause the hierarchy to be initialized, including but not limited to:
Documents that have RDT_PendingInitialization also have this flag if the document's project has not yet been loaded when the document is created. When the document's project is eventually loaded, RDT_PendingHierarchyInitialization will be cleared and OnAfterAttributeChanged(Ex) will be raised with RDTA_HierarchyInitialized. RDTA_HierarchyInitialized may be followed very closely by RDTA_DocumentInitialized, but that isn't guaranteed. This flag is set by the system. It cannot be specified by the caller when registering the document. |
|
| RDT_PendingInitialization | The document hasn't yet been initialized; it will be initialized on demand.
Several things can cause the document to be initialized, including but not limited to:
Documents that are auto-opened when reloading a solution are created with this flag. If the auto-opened document's project has not yet been loaded, it will also have the RDT_PendingHierarchyInitialization flag. When the document is fully initialized, RDT_PendingInitialization will be cleared and OnAfterAttributeChanged(Ex) will be raised with RDTA_DocumentInitialized. This flag is set by the system. It cannot be specified by the caller when registering the document. |