ToArray
Contents
[
Hide
]ToArray()
Creates and returns an array with all FallBack fonts for this rule.
public string[] ToArray()
Return Value
Array of String
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
- interface IFontFallBackRule
- namespace Aspose.Slides
- assembly Aspose.Slides
ToArray(int, int)
Creates and returns an array with all FallBack fonts from the specified range in list.
public string[] ToArray(int startIndex, int count)
Parameter | Type | Description |
---|---|---|
startIndex | Int32 | An index of a first font to add. |
count | Int32 | A number of fonts to add. |
Return Value
Array of String
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 a last two font-names as array
string[] fontNames = newRule.ToArray(2,2);
See Also
- interface IFontFallBackRule
- namespace Aspose.Slides
- assembly Aspose.Slides