Napomena
Pristup ovoj stranici zahteva autorizaciju. Možete pokušati da se prijavite ili da promenite direktorijume.
Pristup ovoj stranici zahteva autorizaciju. Možete pokušati da promenite direktorijume.
Shows or hides progress marks in the active Network Diagram.
expression. BoxProgressMarksShow
( _Show_
)
expression A variable that represents an Application object.
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. |
Boolean
The following example first displays and then hides the progress marks.
Sub BoxProgress_MarksShow()
Dim Result As Boolean
'Activate the Network Diagram view
ViewApply Name:="Network Diagram"
Result = BoxProgressMarksShow(True)
Result = BoxProgressMarksShow(False)
End Sub
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.