Newer
Older
ClosedXML / ClosedXML / Excel / Comments / IXLComment.cs
@Francois Botha Francois Botha on 30 May 2017 669 bytes Unknown changes - something to do with line endings?
using System;
using System.Collections.Generic;

namespace ClosedXML.Excel
{
    public interface IXLComment : IXLFormattedText<IXLComment>, IXLDrawing<IXLComment>
    {
        /// <summary>
        /// Gets or sets this comment's author's name
        /// </summary>
        String Author { get; set; }
        /// <summary>
        /// Sets the name of the comment's author
        /// </summary>
        /// <param name="value">Author's name</param>
        IXLComment SetAuthor(String value);

        /// <summary>
        /// Adds a bolded line with the author's name
        /// </summary>
        IXLRichString AddSignature();

        void Delete();
    }

}