public static bool[] getRibbonBits(IRibbonSet1 set) { if (set == null) { return(new bool[6]); } return(new[] { set.RibbonEarth, set.RibbonNational, set.RibbonCountry, set.RibbonChampionBattle, set.RibbonChampionRegional, set.RibbonChampionNational, }); }
public static string[] getRibbonNames(IRibbonSet1 set) => RibbonNames1;
public static string getRibbonNames(IRibbonSet1 set, int index) => RibbonNames1[index];