ChartCharacters.PhoneticCharacters property (Word)

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

Syntax

expression.PhoneticCharacters

expression A variable that represents a 'ChartCharacters' object.

Example

The following example replaces the first three characters in the title of the first chart in the active document with Furigana characters.

With ActiveDocument.InlineShapes(1) 
    If .HasChart Then 
        .Chart.Title.Characters(1,3).PhoneticCharacters = "フリガナ" 
    End If 
End With

See also

ChartCharacters Object

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.