Exemplo n.º 1
0
 public IEnumerable <IColumnCaption> GetLeafCaptions()
 {
     for (int iLeaf = 0; iLeaf < LeafCount; iLeaf++)
     {
         yield return(CaptionComponentList.SpaceSeparate(CaptionLevels.Select(level => level.Values[iLeaf]).ToList()));
     }
 }
Exemplo n.º 2
0
 public static IColumnCaption QualifyColumnCaption(IEnumerable <object> values, IColumnCaption columnCaption)
 {
     return(CaptionComponentList.SpaceSeparate(values.Concat(new[] { columnCaption })));
 }
Exemplo n.º 3
0
 protected bool Equals(CaptionComponentList other)
 {
     return(Equals(Separator, other.Separator) && Equals(Components, other.Components));
 }