FontFallBackRuleToArray Method

Creates and returns an array with all FallBack fonts for this rule.

Namespace:  Aspose.Slides
Assembly:  Aspose.Slides (in Aspose.Slides.dll) Version: 20.3.0.0 (20.3)
Syntax
public string[] ToArray()

Return Value

Type: String
Array of String

Implements

IFontFallBackRuleToArray
Examples
[C#]
// Create a rule contains a list of fonts.
IFontFallBackRule newRule = new FontFallBackRule(0x3040, 0x309F, "MS Mincho, MS Gothic, Tahoma, Times New Roman");

// Get all font names as array.
string[] fontNames = newRule.ToArray();
See Also