ChartCharacters.PhoneticCharacters Property (Word)
Returns or sets the phonetic text for the object. Read/write String.
Version Information
Version Added: Word 2007
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