Task.OutlineParent property (Project)
Gets a Task object representing the parent of a task in the outline structure. Read-only Task.
Syntax
expression. OutlineParent
expression A variable that represents a Task object.
Example
The following example displays the names of all tasks at the same outline level as the selected task.
Sub Siblings()
Dim MyParent As Task
Dim Sibling As Task
Dim Temp As String
Set MyParent = ActiveCell.Task.OutlineParent
For Each Sibling In MyParent.OutlineChildren
Temp = Sibling.Name & ListSeparator & " " & Temp
Next Sibling
Temp = Left$(Temp, Len(Temp) - Len(ListSeparator & " "))
MsgBox Temp
End Sub
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.