In a Visual Studio 2013 extension, I can activate the "Navigate To..." feature with something like:
_dte.ExecuteCommand("Edit.NavigateTo")
However, is there a way to programmatically send it a search term? For example (this doesn't actually work, but illustrates what I'dlike to do):
_dte.ExecuteCommand("Edit.NavigateTo", "Hello")
This, ideally, would then open Navigate To and populate it like so:
Thanks.