| Contents | Index |
You configure Tag to be a string value that uniquely identifies a job object.
Tag is particularly useful in programs that would otherwise need to define the job object as a global variable, or pass the object as an argument between callback routines.
You can return the job object with the findJob function by specifying the Tag property value.
Usage | Job object |
Read-only | Never |
Data type | String |
The default value is an empty string.
Suppose you create a job object in the job manager jm.
job1 = createJob(jm);
You can assign job1 a unique label using Tag.
set(job1,'Tag','MyFirstJob')
You can identify and access job1 using the findJob function and the Tag property value.
job_one = findJob(jm,'Tag','MyFirstJob');

See how to solve large problems with minimal effort and reduce simulation time.
Get free kit| © 1984-2012- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |