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
Post a Comment