Skip to content

Commit

Permalink
render Shrink
Browse files Browse the repository at this point in the history
  • Loading branch information
zhenyagusev committed Dec 27, 2019
1 parent 096fa2b commit 23d14d0
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/BookFx/Renders/StyleRender.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ internal static class StyleRender
style.VAlign.ForEach(
alignment => excelRange.Style.VerticalAlignment = (ExcelVerticalAlignment)alignment);
style.IsWrap.ForEach(wrap => excelRange.Style.WrapText = wrap);
style.IsShrink.ForEach(shrink => excelRange.Style.ShrinkToFit = shrink);
style.Rotation.ForEach(rotation => excelRange.Style.TextRotation = rotation);
style.Indent.ForEach(size => excelRange.Style.Indent = size);
style.Format.ForEach(format => excelRange.Style.Numberformat.Format = format);
Expand Down

0 comments on commit 23d14d0

Please sign in to comment.