FontFallBackRulesCollectionAdd Method |
Add a specified FallBack rule to the end of the collection.
Namespace:
Aspose.Slides
Assembly:
Aspose.Slides (in Aspose.Slides.dll) Version: 20.3.0.0 (20.3)
Syntaxpublic void Add(
IFontFallBackRule sourceRule
)
Public Sub Add (
sourceRule As IFontFallBackRule
)
public:
virtual void Add(
IFontFallBackRule^ sourceRule
) sealed
abstract Add :
sourceRule : IFontFallBackRule -> unit
override Add :
sourceRule : IFontFallBackRule -> unit
Parameters
- sourceRule
- Type: Aspose.SlidesIFontFallBackRule
Specified rule for adding
Implements
IFontFallBackRulesCollectionAdd(IFontFallBackRule)
Examples[C#]
using (Presentation pres = new Presentation ())
{
IFontFallBackRulesCollection rulesList = pres.FontsManager.FontFallBackRulesCollection;
rulesList.Add(new FontFallBackRule(0x400,0x4FF, "Times New Roman"));
}
See Also