IFontFallBackRuleRemove Method |
Removes the first occurrence of a specific FallBack font from the list.
Namespace:
Aspose.Slides
Assembly:
Aspose.Slides (in Aspose.Slides.dll) Version: 22.5.0.0 (22.5)
Syntaxvoid Remove(
string fontName
)
Sub Remove (
fontName As String
)
void Remove(
String^ fontName
)
abstract Remove :
fontName : string -> unit
Parameters
- fontName
- Type: SystemString
The font's name to remove from the list.
Examples[C#]
IFontFallBackRule newRule = new FontFallBackRule(0x3040, 0x309F, "MS Mincho, MS Gothic, Tahoma, Times New Roman");
newRule.Remove ("Tahoma");
See Also