/// <summary>
 ///     Set the font color with one of the theme colors.
 /// </summary>
 /// <param name="ThemeColorIndex">The theme color to be used.</param>
 public void SetFontThemeColor(SLThemeColorIndexValues ThemeColorIndex)
 {
     clrFontColor.SetThemeColor(ThemeColorIndex);
     HasFontColor = clrFontColor.Color.IsEmpty ? false : true;
 }
 /// <summary>
 ///     Set the color of the border with one of the theme colors.
 /// </summary>
 /// <param name="ThemeColorIndex">The theme color to be used.</param>
 public void SetBorderThemeColor(SLThemeColorIndexValues ThemeColorIndex)
 {
     clrReal.SetThemeColor(ThemeColorIndex);
     HasColor = clrReal.Color.IsEmpty ? false : true;
 }