Dear Sir
I want to copy a section between two document.I found it in your help .
Dim m_Document As Document = New Document("D:\Old.htm")
Dim m_Document1 As Document = New Document("D:\New.doc")
Dim sourceSection As Section = m_Document.Sections(0)
Dim NewSection As Section = CType(m_Document1.ImportNode(sourceSection, True), Section)
m_Document1.Sections(4).AppendContent(NewSection)
m_Document1.Save("D:\New.doc")
It works very well but I have a problem. My text is right to left and the result is a reverse string.I know your component have “Bidi” property for this purpose but I don’t know how to set it.
Please tell me how could I do it.
Thanks
Mehdi Mokhtari