FontFallBackRuleRemoveAt Method |
Removes the FallBack font at the specified index of the list.
Namespace:
Aspose.Slides
Assembly:
Aspose.Slides (in Aspose.Slides.dll) Version: 20.3.0.0 (20.3)
Syntax public void RemoveAt(
int index
)
Public Sub RemoveAt (
index As Integer
)
public:
virtual void RemoveAt(
int index
) sealed
abstract RemoveAt :
index : int -> unit
override RemoveAt :
index : int -> unit
Parameters
- index
- Type: SystemInt32
The zero-based index of the font to remove.
Implements
IFontFallBackRuleRemoveAt(Int32)Examples [C#]
IFontFallBackRule newRule = new FontFallBackRule(0x3040, 0x309F, "MS Mincho, MS Gothic, Tahoma, Times New Roman");
newRule.Remove (2);
See Also