/// <summary>
 /// Translates the toolbox layout color type to a Color.
 /// </summary>
 /// <returns>The toolbox layout color type.</returns>
 /// <param name='color'>The converted Color object.</param>
 private Color TranslateToolboxLayoutColor(ColorType color)
 {
     return new Color(color.Red, color.Green, color.Blue);
 }