RemoveAt()

IFontFallBackRule::RemoveAt(int32_t) method

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

virtual void Aspose::Slides::IFontFallBackRule::RemoveAt(int32_t index)=0

Arguments

ParameterTypeDescription
indexint32_tThe zero-based index of the font to remove.

Remarks

// Create a rule contains a list of fonts.
auto newRule = MakeObject<FontFallBackRule>(0x3040, 0x309F, u"MS Mincho, MS Gothic, Tahoma, Times New Roman");
//Removing of Tahoma from list
newRule->RemoveAt(2);

See Also