FontFallBackRuleAddFallBackFonts Method (String)

Adds a new fonts 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[] fontNames
)

Parameters

fontNames
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 of another three fonts to the rule 
newRule.AddFallBackFonts(new string [] {"MS Gothic","Tahoma, Times New Roman"});
See Also