RemoveAt

FontFallBackRule.RemoveAt method

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

public void RemoveAt(int index)
ParameterTypeDescription
indexInt32The zero-based index of the font to remove.

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