Skip to main content
All docs
V25.1
  • Row

    DevExpress v25.1 Update — Your Feedback Matters

    Our What's New in v25.1 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

    Take the survey Not interested

    ThreadedComment.Reply(String, String) Method

    Adds a reply to the comment.

    Namespace: DevExpress.Spreadsheet

    Assembly: DevExpress.Spreadsheet.v25.1.Core.dll

    NuGet Package: DevExpress.Spreadsheet.Core

    #Declaration

    RepliedThreadedComment Reply(
        string authorName,
        string text
    )

    #Parameters

    Name Type Description
    authorName String

    The name of the reply author.

    text String

    The text of the reply.

    #Returns

    Type Description
    RepliedThreadedComment

    The reply to the comment.

    #Example

    The code sample below adds a reply to the first comment:

    using DevExpress.Spreadsheet;
    
    var workbook = new Workbook();
    workbook.LoadDocument(@"C:\Docs\Comments.xlsx");
    Worksheet worksheet = workbook.Worksheets[0];
    var comments = worksheet.ThreadedComments;
    
    ThreadedComment threadedComment = comments[0];
    threadedComment.Reply("Nancy Davolio", "Thanks for the hint");
    workbook.SaveDocument(@"C:\Docs\Comments_upd.xlsx");
    
    See Also