Skip to content

Latest commit

 

History

History
74 lines (37 loc) · 1.26 KB

PowerPoint.Axis.MajorGridlines.md

File metadata and controls

74 lines (37 loc) · 1.26 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Axis.MajorGridlines property (PowerPoint)
vbapp10.chm682011
vbapp10.chm682011
PowerPoint.Axis.MajorGridlines
d0ec2384-8503-0198-388c-c74231137bf0
06/08/2017
medium

Axis.MajorGridlines property (PowerPoint)

Returns the major gridlines for the specified axis. Read-only Gridlines.

Syntax

expression.MajorGridlines

expression A variable that represents an 'Axis' object.

Remarks

Only axes in the primary axis group can have gridlines.

Example

Note

Although the following code applies to Microsoft Word, you can readily modify it to apply to PowerPoint.

The following example sets the color of the major gridlines for the value axis of the first chart in the active document.

With ActiveDocument.InlineShapes(1)

    If .HasChart Then

        With .Chart.Axes(xlValue)

            If .HasMajorGridlines Then

                 ' Set the color to blue.

                .MajorGridlines.Border.ColorIndex = 5 

            End If

        End With

    End If

End With

See also

Axis Object

[!includeSupport and feedback]