Repository.Task.GetAllTaskTypes: Difference between revisions
Jump to navigation
Jump to search
Kate Racaza (talk | contribs) mNo edit summary |
Kate Racaza (talk | contribs) No edit summary |
||
Line 2: | Line 2: | ||
<onlyinclude>Gets a list of RCM++ or RBI task types associated with a | <onlyinclude>Gets a list of RCM++ or RBI task types associated with a [[Repository_Class|Repository]] object. Returns a '''[[TaskTypeInfo Class|TaskTypeInfo]]''' object that represents the task types.</onlyinclude> | ||
== Syntax == | == Syntax == |
Revision as of 23:41, 7 April 2016
Member of: SynthesisAPI.Repository
Gets a list of RCM++ or RBI task types associated with a Repository object. Returns a TaskTypeInfo object that represents the task types.
Syntax
.Task.GetAllTaskTypes()
Example
This example assumes that task types have been defined in a Synthesis repository.
VBA|VB.NET 'Add code to connect to a Synthesis repository. Dim MyRepository As New Repository ... 'Get a list of all defined task types in the repository. Dim ListofTaskTypes() As TaskTypeInfo ListofTaskTypes = MyRepository.Task.GetAllTaskTypes() 'Output sample: Display the number of elements in the array. Dim NumberofElements As Integer NumberofElements = UBound(ListofTaskTypes) - LBound(ListofTaskTypes) + 1 MsgBox (NumberofElements)