Share via


Application.DetailStylesProperties Method

Project Developer Reference

Sets the format of details in a usage view.

Syntax

expression.DetailStylesProperties(AlignCellData, RepeatRowLabel, ShortLabels, DisplayDetailsColumn)

expression   A variable that represents an Application object.

Parameters

Name Required/Optional Data Type Description
AlignCellData Optional Long Specifies the alignment of data in cells. Can be one of the following PjAlignment constants: pjCenter, pjLeft, or pjRight. The default value is pjRight.
RepeatRowLabel Optional Boolean True if details headers are repeated on all assignment rows. The default value is True.
ShortLabels Optional Boolean True if Microsoft Office Project 2007 displays short details header names. The default value is True.
DisplayDetailsColumn Optional Long Specifies whether a details column displays. Can be one of the following PjYesNoAutomatic constants: pjAuto, pjNo, or pjYes. The default value is pjYes.

Return Value
Boolean

Remarks

Using the DetailStylesProperties method without specifying any arguments displays the Detail Styles dialog box with the Usage Properties tab selected.

Example
The following example hides the details column displays.

Visual Basic for Applications
  Sub DetailStyles_Remove()

' Activate the Usage view ViewApply Name:="Task Usage" DetailStylesRemove Item:=pjWork

End Sub

See Also