Пример #1
0
        public static ExcelCell Left(this ExcelCell @this, int indent)
        {
            @this.Cells().Style.Indent = indent;
            @this.Cells().Style.HorizontalAlignment = ExcelHorizontalAlignment.Left;

            return(@this);
        }
Пример #2
0
 public static ExcelCell Center(this ExcelCell @this)
 {
     @this.Cells().Style.HorizontalAlignment = ExcelHorizontalAlignment.Center;
     return(@this);
 }
Пример #3
0
 public static ExcelCell BackgroundColor(this ExcelCell @this, Color color)
 {
     @this.Cells().Style.Fill.PatternType = ExcelFillStyle.Solid;
     @this.Cells().Style.Fill.BackgroundColor.SetColor(color);
     return(@this);
 }
Пример #4
0
 public static ExcelCell Bold(this ExcelCell @this)
 {
     @this.Cells().Style.Font.Bold = true;
     return(@this);
 }
Пример #5
0
 public static ExcelCell FontSize(this ExcelCell @this, int value)
 {
     @this.Cells().Style.Font.Size = value;
     return(@this);
 }
Пример #6
0
 public static ExcelCell BorderTop(this ExcelCell @this, ExcelBorderStyle style, Color color)
 {
     @this.Cells().Style.Border.Top.Style = style;
     @this.Cells().Style.Border.Top.Color.SetColor(color);
     return(@this);
 }
Пример #7
0
 public static ExcelCell FontColor(this ExcelCell @this, Color color)
 {
     @this.Cells().Style.Font.Color.SetColor(color);
     return(@this);
 }
Пример #8
0
 public static ExcelCell Style(this ExcelCell @this, Action <ExcelStyle> action)
 {
     action(@this.Cells().Style);
     return(@this);
 }
Пример #9
0
 public static ExcelCell Numberformat(this ExcelCell @this, string format)
 {
     @this.Cells().Style.Numberformat.Format = format;
     return(@this);
 }
Пример #10
0
 public static ExcelCell Formula(this ExcelCell @this, string value)
 {
     @this.Cells().Formula = value;
     return(@this);
 }
Пример #11
0
 public static ExcelCell Value(this ExcelCell @this, object value)
 {
     @this.Cells().Value = value;
     return(@this);
 }
Пример #12
0
 public static ExcelCell Set(this ExcelCell @this, Action <ExcelRangeBase> action)
 {
     action(@this.Cells());
     return(@this);
 }