FontFallBackRuleToArray Method (Int32, Int32) |
Creates and returns an array with all FallBack fonts from the specified range in list.
Namespace:
Aspose.Slides
Assembly:
Aspose.Slides (in Aspose.Slides.dll) Version: 20.3.0.0 (20.3)
Syntax public string[] ToArray(
int startIndex,
int count
)
Public Function ToArray (
startIndex As Integer,
count As Integer
) As String()
public:
virtual array<String^>^ ToArray(
int startIndex,
int count
) sealed
abstract ToArray :
startIndex : int *
count : int -> string[]
override ToArray :
startIndex : int *
count : int -> string[]
Parameters
- startIndex
- Type: SystemInt32
An index of a first font to add. - count
- Type: SystemInt32
A number of fonts to add.
Return Value
Type:
StringArray of
StringImplements
IFontFallBackRuleToArray(Int32, Int32)Examples [C#]
IFontFallBackRule newRule = new FontFallBackRule(0x3040, 0x309F, "MS Mincho, MS Gothic, Tahoma, Times New Roman");
string[] fontNames = newRule.ToArray(2,2);
See Also