DTE2.ExecuteCommand(String, String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Executes the specified command.
void ExecuteCommand(std::wstring const & CommandName, std::wstring const & CommandArgs = "");
[System.Runtime.InteropServices.DispId(222)]
public void ExecuteCommand (string CommandName, string CommandArgs = "");
[<System.Runtime.InteropServices.DispId(222)>]
abstract member ExecuteCommand : string * string -> unit
Public Sub ExecuteCommand (CommandName As String, Optional CommandArgs As String = "")
Parameters
- CommandName
- String
Required. The name of the command to invoke.
- CommandArgs
- String
Optional. A string containing the same arguments you would supply if you were invoking the command from the Command window.
If a string is supplied, it is passed to the command line as the command's first argument and is parsed to form the various arguments for the command. This is similar to how commands are invoked in the Command window.
Implements
- Attributes
Examples
Sub ExecuteCommandExample()
' Open the New File dialog box.
ExecuteCommand ("File.NewFile")
End Sub
Remarks
ExecuteCommand runs commands or macros listed in the Keyboard section of the Environment panel of the Options dialog box on the Tools menu.
You can also invoke commands or macros by running them from the command line, in the Command window, or by pressing toolbar buttons or keystrokes associated with them.
ExecuteCommand cannot execute commands that are currently disabled in the environment. The Build
method, for example, will not execute while a build is currently in progress.
ExecuteCommand implicitly pauses macro recording so that the executing command does not emit macro code. This prevents double code emission when recording and invoking macros as part of what you are recording.