Skip to content

Latest commit

 

History

History
56 lines (34 loc) · 1.16 KB

Project.Application.BoxLinkLabelsShow.md

File metadata and controls

56 lines (34 loc) · 1.16 KB
title keywords f1_keywords ms.service api_name ms.assetid ms.date ms.localizationpriority
Application.BoxLinkLabelsShow method (Project)
vbapj.chm47
vbapj.chm47
project-server
Project.Application.BoxLinkLabelsShow
8dbb1406-10e8-d096-540a-4c7cfd61a413
06/08/2017
medium

Application.BoxLinkLabelsShow method (Project)

Shows or hides link labels in the active Network Diagram.

Syntax

expression. BoxLinkLabelsShow( _Show_ )

expression A variable that represents an Application object.

Parameters

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

Return value

Boolean

Example

The following example first displays and then hides the labels.

Sub ShowBoxLink() 
 
 'Activate the Network Diagram view 
 ViewApply Name:="Network Diagram" 
 
 Result = BoxLinkLabelsShow(True) 
 Result = BoxLinkLabelsShow(False) 
End Sub

[!includeSupport and feedback]