Annotation - MergeXFDF does not include the rotation of free text in .NET Framework

Hi William,

After calling MergeXFDF, you need to call doc.refreshAnnotAppearances. For more information on why you need this, see the following forum post:

This PDF specification also be default only allows rotations of 90 degrees. If you are doing partial rotations you will need to add the following lines of code after the MergeXFDF

RefreshOptions refreshOptions = new RefreshOptions();
refreshOptions.SetUseNonStandardRotation(true);
doc.refreshAnnotAppearances(refreshOptions);