Application.GridlinesEdit method (Project)
Edits gridlines.
Syntax
expression.GridlinesEdit (Item, NormalType, NormalColor, Interval, IntervalType, IntervalColor)
expression A variable that represents an Application object.
Parameters
Name | Required/Optional | Data type | Description |
---|---|---|---|
Item | Required | Integer | The gridline to edit. Can be one of the following PjGridline constants:
|
NormalType | Optional | Integer | The type for normal gridlines. Can be one of the following PjLineType constants: pjNoLines, pjContinuous, pjCloseDot, pjDot, or pjDash. |
NormalColor | Optional | Integer | The color of normal gridlines. Can be one of the PjColor constants. |
Interval | Optional | Integer | A number from 0 to 99 that specifies the interval between gridlines. |
IntervalType | Optional | Integer | The type for secondary gridlines. Can be one of the PjLineType constants. |
IntervalColor | Optional | Integer | The color of secondary gridlines. Can be one of the PjColor constants. |
Return value
Boolean
Remarks
To edit gridlines where colors can be hexadecimal RGB values, use the GridLinesEditEx method.
Example
The following example changes the major gridlines to red.
Sub Gridlines_Edit()
'Activate Gantt Chart view
ViewApply Name:="&Gantt Chart"
GridlinesEdit Item:=pjMajorColumns, NormalColor:=pjRed
End Sub
Support and feedback
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.