Share via


Application.BoxProgressMarksShow Method

Project Developer Reference

Shows or hides progress marks in the active Network Diagram.

Syntax

expression.BoxProgressMarksShow(Show)

expression   A variable that represents an Application object.

Parameters

Name Required/Optional Data Type Description
Show Optional Boolean True if progress marks display in the active view. The default value is True if progress marks are hidden and False if they are visible.

Return Value
Boolean

Example
The following example first displays and then hides the progress marks.

Visual Basic for Applications
  Sub BoxProgress_MarksShow()
Dim Result As Boolean

'Activate the Network Diagram view  
ViewApply Name:="Network Diagram"

Result = <strong class="bterm">BoxProgressMarksShow</strong>(True)
Result = <strong class="bterm">BoxProgressMarksShow</strong>(False)

End Sub

See Also