Share via


ChartCharacters.PhoneticCharacters Property

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

Namespace:  Microsoft.Office.Interop.PowerPoint
Assembly:  Microsoft.Office.Interop.PowerPoint (in Microsoft.Office.Interop.PowerPoint.dll)

Syntax

'Declaration
Property PhoneticCharacters As String
    Get
    Set
'Usage
Dim instance As ChartCharacters
Dim value As String

value = instance.PhoneticCharacters

instance.PhoneticCharacters = value
string PhoneticCharacters { get; set; }

Property Value

Type: System.String

Examples

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

With ActivePresentation.Slides(1).Shapes(1)

    If .HasChart Then

        .Chart.Title.Characters(1,3).PhoneticCharacters= ""

    End If

End With

See Also

Reference

ChartCharacters Interface

ChartCharacters Members

Microsoft.Office.Interop.PowerPoint Namespace