New to Telerik Document ProcessingStart a free 30-day trial

Reply within a threaded comment, supporting author attribution, text content, and creation dates.

Definition

Namespace:Telerik.Windows.Documents.Spreadsheet.Model.Comments

Assembly:Telerik.Windows.Documents.Spreadsheet.dll

Syntax:

C#
public class SpreadsheetCommentReply : IFloatingComment

Inheritance: objectSpreadsheetCommentReply

Implements: IFloatingComment

Methods

Executes the SetReplyAuthor command to update the reply's author with undo support.

C#
protected void SetAuthorName(string value)
Parameters:valuestring

Properties

Display name of the reply's author; setting a new value pushes the change to the undo stack.

C#
public string Author { get; set; }
Property Value:

The author.

Implements: IFloatingComment.Author

Date when the reply was created; setting a new value triggers re-sorting of the parent comment's reply collection by creation date.

C#
public DateTime? CreationDate { get; set; }

Parent comment to which this reply belongs.

C#
public SpreadsheetComment ParentComment { get; }
Property Value:

The text value.

Cell index of the parent comment to which this reply is attached.

C#
public CellIndex RelatedCellIndex { get; }
Property Value:

The cell index.

Implements: IFloatingComment.RelatedCellIndex

Text content of the reply; setting a new value pushes the change to the undo stack.

C#
public string Text { get; set; }
Property Value:

The text value.

Implements: IFloatingComment.Text