Hebrew Text Issue in Aspose.words >net

Hello,

I am using Aspose.Words for MailMerge and in my document their is hebrew language but it messed up with RTL. So can you please explain me how I can implement that thing. I will attached my document

document

@harsh1088

Thanks for your inquiry. Please enable FieldOptions.IsBidiTextSupportedOnUpdate property to instruct Aspose.Words mail merge engine to support bidirectional text during field update. When this property is set to true, additional steps are performed to produce Right-To-Left language (i.e. Arabic or Hebrew) compatible field result during its update. Please check following code for reference, hopefully it will resolve the issue.

doc.FieldOptions.IsBidiTextSupportedOnUpdate = true;

Best Regards,