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)
Syntaxpublic FontFallBackRule(
uint startIndex,
uint endIndex,
string fontNames
)
Public Sub New (
startIndex As UInteger,
endIndex As UInteger,
fontNames As String
)
public:
FontFallBackRule(
unsigned int startIndex,
unsigned int endIndex,
String^ fontNames
)
new :
startIndex : uint32 *
endIndex : uint32 *
fontNames : string -> FontFallBackRule
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#]
IFontFallBackRule newRule = new FontFallBackRule(0x3040, 0x309F, "MS Mincho");
IFontFallBackRule newRule = new FontFallBackRule(0x3040, 0x309F, "MS Mincho, MS Gothic, Tahoma");
See Also