다음을 통해 공유


Range.Phonetics Property (Excel)

Returns the Phonetics collection of the range. Read only.

Syntax

.Phonetics

A variable that represents a Range object.

Example

This example displays all of 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

참고 항목

개념

Range Object Members

Range Object