Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 460 Bytes

Comments-Style-Properties.md

File metadata and controls

12 lines (9 loc) · 460 Bytes

Properties.jpg

var wb = new XLWorkbook();
var ws = wb.Worksheets.Add("Properties");

ws.Cell("A1").Comment.Style.Properties.Positioning = XLDrawingAnchor.Absolute;
ws.Cell("A2").Comment.Style.Properties.Positioning = XLDrawingAnchor.MoveAndSizeWithCells;
ws.Cell("A3").Comment.Style.Properties.Positioning = XLDrawingAnchor.MoveWithCells;

wb.SaveAs("CommentsProperties.xlsx");