Thank you for your reply.
I have emailed the "before" and "after" files to the
support@essentialobjects.com email address.
I added a label and textbox to the bottom of the "before" file that contains all the letters in the alphabet and many punctuation marks for the Lucida font. This is my attempt at forcing more of the font to be included/embedded.
The behavior after the file is processed using the code below is the same as before. In Acrobat Reader, the font is wrong for the "It is time for all..." text until you click on it and it changes to Lucida.
PdfDocument testDoc = new PdfDocument(loadPath + "Starting_file_from_Acrobat.pdf");
testDoc.Fields["Text1"].Value = "Will the text box below retain it's font?";
testDoc.Fields["Text1"].ReadOnly = true;
testDoc.Fields["Text2"].Value = "It is time for all good people to come to the aid of their country.";
testDoc.Fields["Text2"].ReadOnly = true;
testDoc.EmbedFont = true;
testDoc.Save(storagePath + "Processed_file_EmbedTrue.pdf");
Was this not a good test? If so, what steps would I do next to try to solve this?
Thank you for your assistance with this.