TaskTypeCollectionAdd(ValueTupleString, ProjectTaskTypeEnum) Method
Add one or more task types using a simple tuple approach.
Namespace: ProjectTaskAssembly: ProjectTask (in ProjectTask.dll) Version: 25.2814.3647
public List<TaskTypeItem> Add(
params (string , ProjectTaskTypeEnum )[] types
)
Public Function Add (
ParamArray types As ( As String, As ProjectTaskTypeEnum)()
) As List(Of TaskTypeItem)
No code example is currently available or this language may not be supported.
- types ValueTupleString, ProjectTaskTypeEnum
-
One or more displayName, taskType tuples.
ListTaskTypeItem
Reference to a list of items that have been added to the collection.
To use this method, call it similarly to:
project.TaskTypes.Add(
("Project", ProjectTaskTypeEnum.Project),
("Task", ProjectTaskTypeEnum.Task));