/// <summary>Static getter for Image</summary>
 public static string GetImage(IAbstractBackgroundImage that)
 {
     return(that.GetPropertyValue <string>("image"));
 }
 /// <summary>Static getter for Use Light Overlay</summary>
 public static bool GetUseLightOverlay(IAbstractBackgroundImage that)
 {
     return(that.GetPropertyValue <bool>("useLightOverlay"));
 }
 /// <summary>Static getter for Use Light Text Color</summary>
 public static bool GetUseLightTextColor(IAbstractBackgroundImage that)
 {
     return(that.GetPropertyValue <bool>("useLightTextColor"));
 }