FontFallBackRuleRemove Method

Removes the first occurrence of a specific FallBack font from the list.

Namespace:  Aspose.Slides
Assembly:  Aspose.Slides (in Aspose.Slides.dll) Version: 20.3.0.0 (20.3)
Syntax
public void Remove(
	string fontName
)

Parameters

fontName
Type: SystemString
The font's name to remove from the list.

Implements

IFontFallBackRuleRemove(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");

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