示例#1
0
 /// <summary>
 ///     Sets the border color of given range
 /// </summary>
 /// <param name="range"></param>
 /// <param name="color"></param>
 /// <returns></returns>
 public static ExcelRangeBase SetBorderColor(this ExcelRangeBase range, Color color)
 {
     range.BorderAround(ExcelBorderStyle.Thin, color);
     return(range);
 }