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)
Syntaxpublic void Remove(
string fontName
)
Public Sub Remove (
fontName As String
)
public:
virtual void Remove(
String^ fontName
) sealed
abstract Remove :
fontName : string -> unit
override Remove :
fontName : string -> unit
Parameters
- fontName
- Type: SystemString
The font's name to remove from the list.
Implements
IFontFallBackRuleRemove(String)
Examples[C#]
IFontFallBackRule newRule = new FontFallBackRule(0x3040, 0x309F, "MS Mincho, MS Gothic, Tahoma, Times New Roman");
newRule.Remove ("Tahoma");
See Also