/// <summary>
 ///     Sets border style around the range.
 /// </summary>
 /// <param name="thisStyle"></param>
 /// <param name="style"></param>
 /// <returns></returns>
 public static ExcelStyle BorderAround(this ExcelStyle thisStyle, ExcelBorderStyle style)
 {
     thisStyle.BorderAround(style, Color.Black);
     return(thisStyle);
 }