Index.AccentedLetters property (Word)

True if the specified index contains separate headings for accented letters (for example, words that begin with "À" are under one heading and words that begin with "A" are under another). Read/write Boolean.

Syntax

expression. AccentedLetters

expression A variable that represents a 'Index' object.

Example

This example formats the first index in the active document in a single column, with the appropriate letter preceding each alphabetical group and separate headings for accented letters.

If ActiveDocument.Indexes.Count >= 1 Then 
 With ActiveDocument.Indexes(1) 
 .HeadingSeparator = wdHeadingSeparatorLetter 
 .NumberOfColumns = 1 
 .AccentedLetters = True 
 End With 
End If

See also

Index Object

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.