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.
Provides additional members to the _VSOBSEARCHOPTIONS enumeration.
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.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
Syntax
'Declaration
<FlagsAttribute> _
Public Enumeration _VSOBSEARCHOPTIONS2
[FlagsAttribute]
public enum _VSOBSEARCHOPTIONS2
[FlagsAttribute]
public enum class _VSOBSEARCHOPTIONS2
[<FlagsAttribute>]
type _VSOBSEARCHOPTIONS2
public enum _VSOBSEARCHOPTIONS2
Members
| Member name | Description | |
|---|---|---|
| VSOBSO_CALLSFROM | Obtains calls from symbol specified in VSOBSEARCHCRITERIA2. | |
| VSOBSO_CALLSTO | Obtains calls to symbol specified in VSOBSEARCHCRITERIA2. | |
| VSOBSO_EXPANDCHILDREN | Used with VSOBSO_FILTERING if a library supports LF_SUPPORTSFILTERINGWITHEXPANSION. | |
| VSOBSO_FILTERING | Specifies filter in class view and the object browser. | |
| VSOBSO_LISTREFERENCES | Specifies that search results should contain references as children. |
Remarks
COM Signature
From vsshell80.idl:
enum _VSOBSEARCHOPTIONS2
{
VSOBSO_FILTERING = 0x0100,
VSOBSO_EXPANDCHILDREN = 0x0200,
VSOBSO_CALLSTO = 0x0400,
VSOBSO_CALLSFROM = 0x0800,
VSOBSO_LISTREFERENCES = 0x1000
};
typedef DWORD VSOBSEARCHOPTIONS2;