JumpTask.Arguments Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient ou définit les arguments passés à l'application lors du démarrage.
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
Valeur de propriété
Arguments passés à l'application lors du démarrage. La valeur par défaut est null
.
Exemples
L’exemple suivant montre comment déclarer un JumpTask balisage. L’ouverture JumpTask d’un fichier texte nommé readme.txt
dans l’application Bloc-notes.
<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"/>