Repository.Task.GetAllTaskTypes

From ReliaWiki
Revision as of 16:29, 21 August 2015 by Kate Racaza (talk | contribs)
Jump to navigation Jump to search
APIWiki.png


Member of: SynthesisAPI10.Repository


Gets a list of all existing RCM++ or RBI task types in the current repository. Returns a TaskTypeInfo object array that contains the definitions, ID numbers, classifications and abbreviations.

Syntax

.Task.GetAllTaskTypes()


Example

This example assumes that task types exist in the repository.

VBA|VB.NET

 'Add code to connect to a Synthesis repository. 
  Dim MyRepository As New Repository
  ...   

 
 'Get a list of all task types in the repository. 
 Dim ListofTaskTypes() As TaskTypeInfo
 ListofTaskTypes = MyRepository.Task.GetAllTaskTypes()

 'Output sample: Display the name and classification ID of the first available task in the project. 
 Dim TaskTypeName As String
 Dim TaskTypeID As Integer
 TaskTypeName = ListofTaskTypes(0).Name
 TaskTypeID = ListofTaskTypes(0).Classification
 MsgBox ("The first task type is: " & TaskTypeName & ", Classification ID#" & TaskTypeID)