Remove

IFontFallBackRule.Remove method

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

public void Remove(string fontName)
ParameterTypeDescription
fontNameStringThe font’s name to remove from the list.

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 of Tahoma from list
newRule.Remove ("Tahoma");

See Also