Skip to content

Comments Signatures

Francois Botha edited this page Feb 26, 2018 · 2 revisions

Signatures.jpg

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

// By default the signature will be with the logged user
// ws.Cell("A2").Comment.AddSignature().AddText("Hello World!");

// You can override this by specifying the comment's author:
ws.Cell("A2").Comment
  .SetAuthor("MDeLeon")
  .AddSignature()
  .AddText("Hello World!");

// Set all comments to visible
ws.CellsUsed(true, c => c.HasComment).ForEach(c => c.Comment.SetVisible());

wb.SaveAs("CommentsSignatures.xlsx");

FAQ

Examples

Real world scenarios

Time Savers

Performance and Memory

Misc

Inserting Data/Tables

Styles

Ranges

Rows

Columns

Page Setup (Print Options)

AutoFilters

Comments

Dev docs

Clone this wiki locally