Hi Team
We are facing issue while appending one document after other. Actually our requirement is to keep both document formatting as is and append one document after other without changing any style or formatting of any of the document.
Current method
destinationDoc.AppendDocument(sourceDoc, AW.ImportFormatMode.UseDestinationStyles);
which we are using is forcing us to keep either source or destination style. if we choose KeepDifferentStyles option still it impose formatting changes.
public enum ImportFormatMode
{
UseDestinationStyles = 0,
KeepSourceFormatting = 1,
KeepDifferentStyles = 2
}
Do we have method where it keeps both the document formatting separate and lets use it. please lets know if we need to provide more inputs and a prioritization will help us in resolving our issues quickly? Also lets know if you need specific document to research further, though it may be bit difficult as it has lots of client data.