// For complete examples and data files, please go to https://github.com/groupdocs-watermark/GroupDocs.Watermark-for-.NET
using (CellsDocument doc = Document.Load<CellsDocument>(@"D:\test.xlsx"))
{
TextWatermark textWatermark = new TextWatermark("Test watermark", new Font("Arial", 8));
doc.Worksheets[0].AddModernWordArtWatermark(textWatermark);
doc.Save();
}