AddFallBackFonts

AddFallBackFonts(string)

Adds a new font(s) to the list of FallBack fonts.

public void AddFallBackFonts(string fontName)
ParameterTypeDescription
fontNameStringFont’s name or names (delimited by comma) for FallBack

Examples

[C#]
// Create new instance of FontFallBackRule
IFontFallBackRule newRule = new FontFallBackRule(0x3040, 0x309F, "MS Mincho");

//Add a second font to the rule 
newRule.AddFallBackFonts("MS Gothic");
//Add a third and fourth fonts to the rule 
newRule.AddFallBackFonts("Tahoma, Times New Roman");

See Also


AddFallBackFonts(string[])

Adds a new fonts to the list of FallBack fonts.

public void AddFallBackFonts(string[] fontNames)
ParameterTypeDescription
fontNamesString[]Font’s name or names (delimited by comma) for FallBack

Examples

[C#]
//Create new instance of FontFallBackRule
IFontFallBackRule newRule = new FontFallBackRule(0x3040, 0x309F, "MS Mincho");

//Add of another three fonts to the rule 
newRule.AddFallBackFonts(new string [] {"MS Gothic","Tahoma, Times New Roman"});

See Also