I'm trying to change basic font to "Arial" but if it is any polish symbol its change back to Calibri like on picture. Is is any way to apply it for polish symbols?
Run run = new Run();
RunProperties runProp = new RunProperties();
Text textRun = new Text()
{
Text = text,
Space = SpaceProcessingModeValues.Preserve
};
runProp.Append(new RunFonts() { Ascii = EnumFonts.Arial.ToString() }, new FontSize());
run.Append(runProp);
run.Append(textRun);