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
)
Public Sub AddFallBackFonts (
fontName As String
)
public:
virtual void AddFallBackFonts(
String^ fontName
) sealed
abstract AddFallBackFonts :
fontName : string -> unit
override AddFallBackFonts :
fontName : string -> unit
Parameters
- fontName
- Type: SystemString
Font's name or names (delimited by comma) for FallBack
Implements
IFontFallBackRuleAddFallBackFonts(String)Examples [C#]
IFontFallBackRule newRule = new FontFallBackRule(0x3040, 0x309F, "MS Mincho");
newRule.AddFallBackFonts("MS Gothic");
newRule.AddFallBackFonts("Tahoma, Times New Roman");
See Also