/// <summary> /// Gets a cabinet color list for the config colors contained in this list. /// </summary> /// <returns>Cabinet ColorList.</returns> public ColorList GetCabinetColorList() { ColorList CL = new ColorList(); foreach (ColorConfig CC in this) { CL.Add(CC.GetCabinetColor()); } return(CL); }