public static bool GetOpenLinkInNewWindow(IAbstractNcLinkItemModel that)
 {
     return(that.GetPropertyValue <bool>("openLinkInNewWindow"));
 }
 public static string GetCaption(IAbstractNcLinkItemModel that)
 {
     return(that.GetPropertyValue <string>("caption"));
 }
 /// <summary>Static getter for Use Caption as ALT and TITLE values</summary>
 public static bool GetUseCaptionForAltAndTitle(IAbstractNcLinkItemModel that)
 {
     return(that.GetPropertyValue <bool>("useCaptionForAltAndTitle"));
 }
 public static string GetAltText(IAbstractNcLinkItemModel that)
 {
     return(that.GetPropertyValue <string>("altText"));
 }
 /// <summary>Static getter for Other Attributes</summary>
 public static IEnumerable <IPublishedContent> GetOtherAttributes(IAbstractNcLinkItemModel that)
 {
     return(that.GetPropertyValue <IEnumerable <IPublishedContent> >("otherAttributes"));
 }