usmanazizgroupdocs
4/17/2017 - 9:55 AM

Documents-AddWatermarkAsBackgroundToExcel.vb

' For complete examples and data files, please go to https://github.com/groupdocs-watermark/GroupDocs.Watermark-for-.NET
Using doc As CellsDocument = Document.Load(Of CellsDocument)("D:\test.xlsx")
    Using watermark As New ImageWatermark("D:\logo.gif")
        doc.AddWatermarkAsBackground(watermark)
    End Using
    doc.Save()
End Using