FontsManagerFontFallBackRulesCollection Property |
Namespace: Aspose.Slides
[C#] using (Presentation pres = new Presentation ()) { // Getting of empty or preinitialized rules collection from FontsManager IFontFallBackRulesCollection rulesList = pres.FontsManager.FontFallBackRulesCollection; // adding of rules to collection rulesList.Add(new FontFallBackRule(0x400,0x4FF, "Times New Roman")); // or // initialization of new instance of rules collection IFontFallBackRulesCollection rulesList = new FontFallBackRulesCollection(); // adding of rules to collection rulesList.Add(new FontFallBackRule(0x400,0x4FF, "Times New Roman")); // and replacing of existing collection by the new one in FontsManager pres.FontsManager.FontFallBackRulesCollection = rulesList; }