FontFallBackRuleRemoveAt Method

Removes the FallBack font at the specified index of the list.

Namespace:  Aspose.Slides
Assembly:  Aspose.Slides (in Aspose.Slides.dll) Version: 20.3.0.0 (20.3)
Syntax
public void RemoveAt(
	int index
)

Parameters

index
Type: SystemInt32
The zero-based index of the font to remove.

Implements

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

//Removing Tahoma from the list.
newRule.Remove (2);
See Also