Axes.Item method (Word)
Returns a single Axis object from an Axes collection.
expression.Item (Type, AxisGroup)
expression A variable that represents an 'Axes' object.
Name | Required/Optional | Data type | Description |
---|---|---|---|
Type | Required | XlAxisType | One of the enumeration values that specifies the axis type. |
AxisGroup | Optional | XlAxisGroup | One of the enumeration values that specifies the axis. |
The following example sets the title text for the category axis for the first chart in the active document.
With ActiveDocument.InlineShapes(1)
If .HasChart Then
With .Chart.Axes.Item(xlCategory)
.HasTitle = True
.AxisTitle.Caption = "1994"
End With
End If
End With
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.