Repository.Task.AddCorrectiveTask: Difference between revisions
Jump to navigation
Jump to search
Alex Ulanov (talk | contribs) |
Kate Racaza (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
{{Template: | {{Template:APIBreadcrumb|10|Repository}} | ||
{{Template: | {{Template:API}} | ||
Saves a new [[CCorrectiveTask Class|cCorrectiveTask]] object to the Synthesis repository. Returns a '''Boolean''' value; when true, indicates that the task now exists in the repository. | |||
== Syntax == | |||
''object''.'''Task.AddCorrectiveTask(''task'')''' | |||
== | where ''object'' is a variable that represents a Repository object. | ||
{{APIComment|' | |||
Dim | === Parameters === | ||
{| {{APITable}} | |||
{{APIComment|' | |- | ||
|task{{APIParam|Required}}||The [[CCorrectiveTask Class|cCorrectiveTask]] object to be added. | |||
|} | |||
{{APIComment|' | |||
== Example == | |||
'''VBA''' | |||
{{APIPrefix|Dim}} MyRepository {{APIPrefix|As New}} Repository | |||
{{APIComment|...'Add code to connect to a Synthesis repository.}} | |||
{{APIComment|'Create a new corrective task. The following example creates a corrective task named "MyNewTask".}} | |||
{{APIPrefix|Dim}} NewTask {{APIPrefix|As New}} cCorrectiveTask | |||
NewTask.Name = "MyNewTask" | |||
{{APIComment|'Add the new task to project #1. The task will be visible in the Synthesis repository upon refresh.}} | |||
MyRepository.Project.SetCurrentProject(1) | |||
{{APIPrefix|Call}} MyRepository.Task.AddCorrectiveTask(NewTask) | |||
'''VB.NET''' | |||
{{APIPrefix|Dim}} MyRepository {{APIPrefix|As New}} Repository | |||
{{APIComment|...'Add code to connect to a Synthesis repository.}} | |||
{{APIComment|'Create a new corrective task. The following example creates a corrective task named "MyNewTask".}} | |||
{{APIPrefix|Dim}} NewTask {{APIPrefix|As New}} cCorrectiveTask | |||
NewTask.Name = "MyNewTask" | |||
{{APIComment|' | {{APIComment|'Add the new task to project #1. The task will be visible in the Synthesis repository upon refresh.}} | ||
MyRepository.Project.SetCurrentProject(1) | |||
MyRepository.Task.AddCorrectiveTask(NewTask) | |||
Revision as of 15:46, 16 July 2015
Member of: SynthesisAPI10Repository
Saves a new cCorrectiveTask object to the Synthesis repository. Returns a Boolean value; when true, indicates that the task now exists in the repository.
Syntax
object.Task.AddCorrectiveTask(task)
where object is a variable that represents a Repository object.
Parameters
Name | Description | |
---|---|---|
taskborder="0" cellpadding="5" cellspacing="0" style="border-collapse: collapse; text-align: left; cellborder" | ||
Name | Status | The cCorrectiveTask object to be added. |
Example
VBA
Dim MyRepository As New Repository ...'Add code to connect to a Synthesis repository. 'Create a new corrective task. The following example creates a corrective task named "MyNewTask". Dim NewTask As New cCorrectiveTask NewTask.Name = "MyNewTask" 'Add the new task to project #1. The task will be visible in the Synthesis repository upon refresh. MyRepository.Project.SetCurrentProject(1) Call MyRepository.Task.AddCorrectiveTask(NewTask)
VB.NET Dim MyRepository As New Repository ...'Add code to connect to a Synthesis repository. 'Create a new corrective task. The following example creates a corrective task named "MyNewTask". Dim NewTask As New cCorrectiveTask NewTask.Name = "MyNewTask" 'Add the new task to project #1. The task will be visible in the Synthesis repository upon refresh. MyRepository.Project.SetCurrentProject(1) MyRepository.Task.AddCorrectiveTask(NewTask)