Form field has not the right font

Hi,

I have created a pdf form with Aspose.NET.
And I tried to use several fonts for the input fields.

At all it is working with Quicksand, Bahnschrift, Comic Sans MS but not with Dax Offc.
Only this font is replaced.

Check.pdf (458.9 KB)

Do you have any idea why. The font is embedded.
Here are the tff files.
DAX.zip (1.1 MB)

Thanks for your answer.

I am extracting fonts before and then I set them like this to the fields:

foreach (var field in fields.Where(x => x.Type == FieldType.Text || x.Type == FieldType.MultiLineText || x.Type == FieldType.DateTime))
{
editor.Facade = new FormFieldFacade
{
FontSize = field.FontSize,
};
editor.Facade.CustomFont = field.FontName;
editor.DecorateField(field.RefID);
}

@Chris2Stein
You should use this code.

var doc = new Document(dataDir + "Check.pdf");

Field fieldForDaxOffc = doc.Form.Fields[0];
fieldForDaxOffc.DefaultAppearance = new DefaultAppearance("DaxOffc", 36, System.Drawing.Color.Black);

doc.Save(dataDir + "Check-out.pdf");

If I misunderstood the question or did not help you with the solution, please write.

@sergei.shibanov

It doesn’t change the result.
If you open the created pdf in Browser or acrobat and fill in form fields, font type is changed to another fall back font. It is not DaxOffc.
This appears not with font types like Quicksand, Bahnschrift etc.

Did you check this with my example?
Offc.png (15.4 KB)

I attached a screenshot from Acrobat.

@Chris2Stein

Please provide a more complete code than in the previous message.

// From 
new Document(); 
// ..................................
// To
Document.Save("..");