AddFallBackFonts
Contents
[
Hide
]AddFallBackFonts(string)
Adds a new font(s) to the list of FallBack fonts.
public void AddFallBackFonts(string fontName)
Parameter | Type | Description |
---|---|---|
fontName | String | 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 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
- class FontFallBackRule
- namespace Aspose.Slides
- assembly Aspose.Slides
AddFallBackFonts(string[])
Adds a new fonts to the list of FallBack fonts.
public void AddFallBackFonts(string[] fontNames)
Parameter | Type | Description |
---|---|---|
fontNames | String[] | 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
- class FontFallBackRule
- namespace Aspose.Slides
- assembly Aspose.Slides