JumpTask.Arguments 属性

定义

获取或设置启动时要传递给应用程序的参数。

public:
 property System::String ^ Arguments { System::String ^ get(); void set(System::String ^ value); };
public string Arguments { get; set; }
member this.Arguments : string with get, set
Public Property Arguments As String

属性值

String

启动时要传递给应用程序的参数。 默认值为 null

示例

以下示例演示如何在标记中声明 JumpTask 。 打开JumpTask记事本应用程序中命名readme.txt的文本文件。

<JumpTask Title="Read Me" 
          Description="Open readme.txt in Notepad." 
          ApplicationPath="C:\Windows\notepad.exe"
          IconResourcePath="C:\Windows\System32\imageres.dll"
          IconResourceIndex="14"
          WorkingDirectory="C:\Users\Public\Documents"
          Arguments="readme.txt"/>

适用于

另请参阅