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
)
Public Sub AddFallBackFonts (
fontNames As String()
)
public:
virtual void AddFallBackFonts(
array<String^>^ fontNames
) sealed
abstract AddFallBackFonts :
fontNames : string[] -> unit
override AddFallBackFonts :
fontNames : string[] -> unit
Parameters
- fontNames
- 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(new string [] {"MS Gothic","Tahoma, Times New Roman"});
See Also