hi! how could i possibly temporarily store a text without losing its formatting properties. I'm only getting a plain text. I am trying to put to a variable a text with a superscript and when i am retrieving it superscript become normal text..Hope someone could enlightened me..or are there any methods that i should use inorder to retain the format of my text?thanks
If all else fails, you could write it to a document using the .FormattedText property of the .Range object and then retrieve it from there. -- Hope this helps. Please reply to the newsgroup unless you wish to avail yourself of my services on a paid consulting basis. Doug Robbins - Word MVP wrote in message news:1128747444.865262.286920@g14g2000cwa.googlegroups.com... > hi! how could i possibly temporarily store a text without losing its > formatting properties. I'm only getting a plain text. I am trying to > put to a variable a text with a superscript and when i am retrieving it > superscript become normal text..Hope someone could enlightened me..or > are there any methods that i should use inorder to retain the format of > my text?thanks >
Thanks, additionally, this is what I want trying to do 1) get some selected text from a document for example the text is hello world 2) I stored it in a variable then retrieve it , echo it on the same document but with the following text <start>hello<mid>world<end> It works well but if i tried to get a formatted text to be parsed, formats were removed especially the superscripts/subscripts.