CommandWindow.SendInput 方法
将输入行发送到**“命令”**窗口,处理方式就像您键入输入行一样。
命名空间: EnvDTE
程序集: EnvDTE(在 EnvDTE.dll 中)
语法
声明
Sub SendInput ( _
Command As String, _
Execute As Boolean _
)
void SendInput(
string Command,
bool Execute
)
void SendInput(
String^ Command,
bool Execute
)
abstract SendInput :
Command:string *
Execute:bool -> unit
function SendInput(
Command : String,
Execute : boolean
)
参数
Command
类型:String必选。 发送到**“命令”**窗口的命令字符串。
Execute
类型:Boolean必选。 True 意味着添加一个换行字符并执行输入行,False 意味着不执行命令行。
备注
如果 Execute 的值为 true,则 SendInput 自动运行命令。 否则,必须在**“命令”**窗口中按 Enter 来运行命令。 反复调用这一方法可以创建一个命令行。 然后,在最后调用时将 Execute 设置为 true 可以执行该命令行。
可以使用 SendInput 积累多个输入行并在需要时执行它们。 这与 ExecuteCommand 方法不同,后者在您提供输入字符串后立即执行指令。 如果要通过手动输入命令行的不同方面的内容来创建复杂的命令行,则 SendInput 很有用。 另外,使用 SendInput 时,可以查看命令生成的任何输出。 使用 ExecuteCommand 时,看不到任何输出,并且必须在输入行中构造完整的命令行。
示例
Sub CommandWinExample(ByVal dte As DTE)
' Get a reference to the Command window.
Dim win As Window = _
DTE.Windows.Item(EnvDTE.Constants.vsWindowKindCommandWindow)
Dim CW As CommandWindow = win.Object
' Input a command into the Command window and execute it.
CW.SendInput("nav https://www.microsoft.com", True)
' Insert some information text into the Command window.
CW.OutputString("This URL takes you to the main Microsoft _
website.")
' Clear the contents of the Command window.
MsgBox("Clearing the Command window...")
CW.Clear()
End Sub
void CommandWinExample(_DTE dte)
{
// Get a reference to the Command window.
Window win =
dte.Windows.Item(EnvDTE.Constants.vsWindowKindCommandWindow);
CommandWindow CW = (CommandWindow)win.Object;
// Input a command into the Command window and execute it.
CW.SendInput("nav https://www.microsoft.com", true);
// Insert some information text into the Command window.
CW.OutputString("This URL takes you to the main Microsoft
website.");
// Clear the contents of the Command window.
MessageBox.Show("Clearing the Command window...");
CW.Clear();
}
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关详细信息,请参阅通过部分受信任的代码使用库。