Skip to content

Latest commit

 

History

History
59 lines (35 loc) · 1.33 KB

Project.Application.BoxShowHideFields.md

File metadata and controls

59 lines (35 loc) · 1.33 KB
title keywords f1_keywords ms.service api_name ms.assetid ms.date ms.localizationpriority
Application.BoxShowHideFields method (Project)
vbapj.chm905
vbapj.chm905
project-server
Project.Application.BoxShowHideFields
b100c012-8ab9-2e39-c8c8-569b1498c5da
06/08/2017
medium

Application.BoxShowHideFields method (Project)

Shows or hides the task data fields of the active Network Diagram.

Syntax

expression. BoxShowHideFields( _Show_ )

expression A variable that represents an Application object.

Parameters

Name Required/Optional Data type Description
Show Optional Boolean True if the fields of Network Diagram boxes are displayed in the active Network Diagram. False if only task ID numbers are displayed. The default value is True if the active Network Diagram isn't showing fields and False if it is.

Return value

Boolean

Example

The following example first hides the fields of Network Diagram boxes and then displays them.

Sub BoxShow_HideFields() 
 
 Dim Result As Boolean 
 
 'Activate the Network Diagram view 
 ViewApply Name:="Network Diagram" 
 
 Result = BoxShowHideFields(False) 
 Result = BoxShowHideFields(True) 
 
End Sub

[!includeSupport and feedback]