コード例 #1
0
 public void Add(IXLCell cell)
 {
     Add(cell.AsRange());
 }
コード例 #2
0
 public static IXLCell AddLeftBorder(this IXLCell cell, XLBorderStyleValues borderStyle = XLBorderStyleValues.Thin, XLColor color = null)
 {
     cell.AsRange().AddLeftBorder(borderStyle, color);
     return(cell);
 }
コード例 #3
0
 public static IXLCell SetFontStyle(this IXLCell cell, Action <IXLFont> config)
 {
     cell.AsRange().SetFontStyle(config);
     return(cell);
 }
コード例 #4
0
 public static IXLCell SetAlignVertical(this IXLCell cell, XLAlignmentVerticalValues align)
 {
     cell.AsRange().SetAlignVertical(align);
     return(cell);
 }
コード例 #5
0
 internal XLMarker(IXLCell cell, Point offset)
     : this(cell.AsRange(), offset)
 {
 }
コード例 #6
0
 internal XLMarker(IXLCell cell)
     : this(cell.AsRange(), new Point(0, 0))
 {
 }