FontFallBackRuleAddFallBackFonts Method (String)

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

Namespace:  Aspose.Slides
Assembly:  Aspose.Slides (in Aspose.Slides.dll) Version: 20.3.0.0 (20.3)
Syntax
public void AddFallBackFonts(
	string fontName
)

Parameters

fontName
Type: SystemString
Font's name or names (delimited by comma) for FallBack

Implements

IFontFallBackRuleAddFallBackFonts(String)
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