在 Word VSTO 中关闭自动智能引号
Turn off Auto Smart Quotes in Word VSTO
Word 有一项名为 "Auto Smart Quotes" 的功能,可将直引号和直撇号更改为斜引号和斜撇号。如何使用 VSTO 插件关闭此功能?
我试过:Application.Selection.NoProofing = True
,但没用。
我正在使用 Visual Studio 2015.
我不知道,但是当我启动 Word 时,在 IDE 中按 F2 并搜索 "quotes",很明显它是
Application.Options.AutoFormatReplaceQuotes = False
and/or可能
Application.Options.AutoFormatAsYouTypeReplaceQuotes = False
Word 有一项名为 "Auto Smart Quotes" 的功能,可将直引号和直撇号更改为斜引号和斜撇号。如何使用 VSTO 插件关闭此功能?
我试过:Application.Selection.NoProofing = True
,但没用。
我正在使用 Visual Studio 2015.
我不知道,但是当我启动 Word 时,在 IDE 中按 F2 并搜索 "quotes",很明显它是
Application.Options.AutoFormatReplaceQuotes = False
and/or可能
Application.Options.AutoFormatAsYouTypeReplaceQuotes = False