Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Allows the pane to intercept certain keys after a search is started, and to navigate between the results or select one of the results displayed in the pane.
Namespace: Microsoft.VisualStudio.Shell
Assembly: Microsoft.VisualStudio.Shell.12.0 (in Microsoft.VisualStudio.Shell.12.0.dll)
Syntax
'Declaration
Public Overridable Function OnNavigationKeyDown ( _
dwNavigationKey As UInteger, _
dwModifiers As UInteger _
) As Boolean
public virtual bool OnNavigationKeyDown(
uint dwNavigationKey,
uint dwModifiers
)
public:
virtual bool OnNavigationKeyDown(
unsigned int dwNavigationKey,
unsigned int dwModifiers
)
abstract OnNavigationKeyDown :
dwNavigationKey:uint32 *
dwModifiers:uint32 -> bool
override OnNavigationKeyDown :
dwNavigationKey:uint32 *
dwModifiers:uint32 -> bool
public function OnNavigationKeyDown(
dwNavigationKey : uint,
dwModifiers : uint
) : boolean
Parameters
dwNavigationKey
Type: UInt32The navigation key of interest (values from VSConstants.VsSearchNavigationKeys.
dwModifiers
Type: UInt32Modifier flags (values from VSConstants.VsUIAccelModifiers).
Return Value
Type: Boolean
Implements
IVsWindowSearch.OnNavigationKeyDown(UInt32, UInt32)
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.