Turn off Auto Smart Quotes in Word VSTO -


word has feature called "auto smart quotes", changes straight quotes , straight apostrophes slanted quotes , slanted apostrophes. how can turn feature off, using vsto addin?

i tried :application.selection.noproofing = true, did not work.

i'm using visual studio 2015.

i had no idea, when launched word, pressed f2 in ide , searched "quotes", became apparent was

application.options.autoformatreplacequotes = false 

and/or possibly

application.options.autoformatasyoutypereplacequotes = false 

Comments

Popular posts from this blog

How to understand 2 main() functions after using uftrace to profile the C++ program? -

c# - Update a combobox from a presenter (MVP) -

How to put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -