FontFallBackRule Constructor (UInt32, UInt32, String)

Creates new instance.

Namespace:  Aspose.Slides
Assembly:  Aspose.Slides (in Aspose.Slides.dll) Version: 20.3.0.0 (20.3)
Syntax
public FontFallBackRule(
	uint startIndex,
	uint endIndex,
	string[] fontNames
)

Parameters

startIndex
Type: SystemUInt32
Start index of unicode range
endIndex
Type: SystemUInt32
End index of unicode range
fontNames
Type: SystemString
Font's name or names (delimited by comma) for FallBack
Examples
[C#]
// Create new instance of FantFallBackRule with two fonts
IFontFallBackRule newRule = new FontFallBackRule(0x3040, 0x309F, new string[] { "MS Mincho", "MS Gothic"});

// Create new instance of FantFallBackRule with several fonts.
IFontFallBackRule newRule = new FontFallBackRule(0x3040, 0x309F, new string[] { "MS Gothic", "Tahoma, Times New Roman" });
See Also