Range.Phonetics property (Excel)
Returns the Phonetics collection of the range. Read-only.
Syntax
expression.Phonetics
expression A variable that represents a Range object.
Example
This example displays all the Phonetic objects in the active cell.
Set objPhon = ActiveCell.Phonetics
With objPhon
For Each objPhonItem in objPhon
MsgBox "Phonetic object: " & .Text
Next
End With
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.