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