Skip to content

Latest commit

 

History

History
65 lines (36 loc) · 1.52 KB

Project.application.highlightsuccessors.md

File metadata and controls

65 lines (36 loc) · 1.52 KB
title keywords f1_keywords ms.service ms.assetid ms.date ms.localizationpriority
Application.HighlightSuccessors method (Project)
vbapj.chm149
vbapj.chm149
project-server
7a72cc0a-49f0-c95d-23cc-35d7ee077539
06/08/2017
medium

Application.HighlightSuccessors method (Project)

Sets or clears task successor highlighting for the task path feature.

Syntax

expression. HighlightSuccessors (Set)

expression A variable that represents an Application object.

Parameters

Name Required/Optional Data type Description
Set Optional Variant True to set task successor highlighting; False to clear task successor highlighting.
Set Optional Variant
Name Required/Optional Data type Description

Return value

Boolean

Remarks

The HighlightSuccessors method corresponds to the Successors item in the Task Path drop-down list, on the FORMAT tab, under GANTT CHART TOOLS on the ribbon.

Example

Create a project where task 4 is a successor of task 3, and then run the following statements in the Immediate window of the VBE. The PathSuccessor statement prints True.

Application.SelectRow Row:=3, RowRelative:=False 
Application.HighlightSuccessors True
? ActiveProject.Tasks(4).PathSuccessor

See also

Application Object

Task.PathSuccessor Property

[!includeSupport and feedback]