I have AcroField:
AcroFields field = stamper.AcroFields;
and i'm using these BaseFont and Font settings:
string fontName = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Fonts), "times.ttf");
BaseFont bf = BaseFont.CreateFont(fontName, BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED);
Font font = new Font(bf,12);
When i set field.SetFieldProperty(fieldName,"12",12.0f,null); and try to export my pdf all the text that was written on cyrillic does not show. I tried few different ways to fix this problem but non of them help me.
I'm not pretty sure how exactly these font setting apply on AcroFields
If anyone know something about it or can direct me to somewhere, please let me know.