TaskParameters (TTaskConfigureController)
De Wiki1000
(Différences entre les versions)
(Page créée avec « <source lang='delphi'>property TaskParameters:String;</source> Cette propriété défini les paramètres de la tâche. {|class="wikitable" |- | | |} Exemple : <source... ») |
|||
Ligne 13 : | Ligne 13 : | ||
<source lang="delphi"> | <source lang="delphi"> | ||
− | function | + | |
− | var inst:TTaskFormController; | + | function doConfigureMyTask:string; |
+ | var inst:TTaskFormController; aReason:String; | ||
begin | begin | ||
inst := TTaskFormController.Create; | inst := TTaskFormController.Create; | ||
inst.FormName := 'myprocessus.dfm'; | inst.FormName := 'myprocessus.dfm'; | ||
+ | inst.TaskParameters := myProcessParameters; | ||
+ | |||
// This open the interface for configuration | // This open the interface for configuration | ||
− | inst.Configure() | + | if inst.Configure(aReason) then |
− | + | begin | |
− | + | // Result = True means the user has validate the configuration | |
+ | // TaskParameters has been populate | ||
+ | myProcessParameters:= inst.TaskParameters; | ||
+ | end; | ||
end; | end; | ||
</source> | </source> |
Version du 20 novembre 2019 à 16:25
property TaskParameters:String;
Cette propriété défini les paramètres de la tâche.
Exemple :
function doConfigureMyTask:string; var inst:TTaskFormController; aReason:String; begin inst := TTaskFormController.Create; inst.FormName := 'myprocessus.dfm'; inst.TaskParameters := myProcessParameters; // This open the interface for configuration if inst.Configure(aReason) then begin // Result = True means the user has validate the configuration // TaskParameters has been populate myProcessParameters:= inst.TaskParameters; end; end;
Voir aussi