vba - MS-Word paragraph mark (¶) shows in equation mode, how to change normal mode -


i have did ms-word automation convert ooml (word-equation) mathml, cases word paragraph symbol (¶) shows in equation mode. question how automation, change symbol normal mode using vsto/vba.

to hide paragraph symbols trigger following line of code (vba):

activewindow.activepane.view.showall = false 

however, not sure if solves problem see symbol part of equation (it not paragraph ending mark symbol). remove in such situation try use replace function:

replace("your string here ¶", chr(182), "")  

where chr(182) == ¶.


Comments

Popular posts from this blog

javascript - oscilloscope of speaker input stops rendering after a few seconds -

javascript - gulp-nodemon - nodejs restart after file change - Error: listen EADDRINUSE events.js:85 -

Fatal Python error: Py_Initialize: unable to load the file system codec. ImportError: No module named 'encodings' -