Repository.Task.GetAllTaskTypes

From ReliaWiki
Revision as of 21:40, 24 June 2016 by Kate Racaza (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
APIWiki.png


Member of: SynthesisAPI.Repository


Returns an array of TaskTypeInfo objects that represent the RCM++ or RBI task types associated with the Repository object.

Syntax

.Task.GetAllTaskTypes()


Example

This example assumes that task types have been defined in the 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)