共用方式為


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"/>

適用於

另請參閱