Skip to content

Latest commit

 

History

History
54 lines (31 loc) · 1.14 KB

PowerPoint.Axis.TickLabelPosition.md

File metadata and controls

54 lines (31 loc) · 1.14 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Axis.TickLabelPosition property (PowerPoint)
vbapp10.chm682028
vbapp10.chm682028
PowerPoint.Axis.TickLabelPosition
439b3da0-37d1-1fd8-b810-66accac03001
06/08/2017
medium

Axis.TickLabelPosition property (PowerPoint)

Describes the position of tick-mark labels on the specified axis. Read/write XlTickLabelPosition.

Syntax

expression. TickLabelPosition

expression A variable that represents an 'Axis' object.

Example

Note

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

The following example sets tick-mark labels to the high position (above the chart) on the category axis for the first chart in the active document.

With ActiveDocument.InlineShapes(1)
    If .HasChart Then
        .Chart.Axes(xlCategory) _
            .TickLabelPosition = xlTickLabelPositionHigh
    End If
End With

See also

Axis Object

[!includeSupport and feedback]