Skip to content

Latest commit

 

History

History
40 lines (25 loc) · 748 Bytes

Excel.AxisTitle.Text.md

File metadata and controls

40 lines (25 loc) · 748 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
AxisTitle.Text property (Excel)
vbaxl10.chm565085
vbaxl10.chm565085
Excel.AxisTitle.Text
1305fae5-afd9-dd8e-f559-f0c6ebff7a3b
04/13/2019
medium

AxisTitle.Text property (Excel)

Returns or sets the text for the specified object. Read/write String.

Syntax

expression.Text

expression A variable that represents an AxisTitle object.

Example

This example sets the axis title text for the category axis on Chart1.

With Charts("Chart1").Axes(xlCategory) 
 .HasTitle = True 
 .AxisTitle.Text = "Month" 
End With

[!includeSupport and feedback]