Skip to content

Latest commit

 

History

History
44 lines (23 loc) · 1.08 KB

52e7c958-9122-ee2e-c5c1-335a2c2b520b.md

File metadata and controls

44 lines (23 loc) · 1.08 KB

SpellingOptions.GermanPostReform Property (Excel)

True to check the spelling of words using the German post-reform rules. False cancels this feature. Read/write Boolean .

Syntax

expression . GermanPostReform

expression A variable that represents a SpellingOptions object.

Example

In this example, Microsoft Excel determines if the checking of spelling for German words is using post-reform rules and enables this feature if it's not enabled, and then notifies the user of the status.

Sub SpellingCheck() 
 
 ' Determine if spelling check for German words is using post-reform rules. 
 If Application.SpellingOptions.GermanPostReform = False Then 
 Application.SpellingOptions.GermanPostReform = True 
 MsgBox "German words will now use post-reform rules." 
 Else 
 MsgBox "German words using post-reform rules has already been set." 
 End If 
 
End Sub

See also

Concepts

SpellingOptions Object

Other resources

SpellingOptions Object Members