Skip to content

Latest commit

 

History

History
42 lines (27 loc) · 798 Bytes

Excel.Range.Phonetics.md

File metadata and controls

42 lines (27 loc) · 798 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Range.Phonetics property (Excel)
vbaxl10.chm144229
vbaxl10.chm144229
Excel.Range.Phonetics
fdc05b76-b574-63ec-045a-42fdcfae8a9e
05/11/2019
medium

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

[!includeSupport and feedback]