Class SpreadsheetCommentReply
Represents a reply element in the CommentCollection.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Spreadsheet.Model.Comments
Assembly: Telerik.Windows.Documents.Spreadsheet.dll
Syntax
public class SpreadsheetCommentReply : ITextObject, IThreadedComment, IFloatingComment
Properties
Author
Gets or sets the author assigned to the reply. Setting it will push the change in the undo stack.
Declaration
public string Author { get; set; }
Property Value
System.String
The author. |
Implements
CreationDate
Gets or sets the date when the reply is created. Setting a new date calls a re-sort command by CreationDate in ascending order over the ReplySortedList.
Declaration
public DateTime? CreationDate { get; set; }
Property Value
System.Nullable<System.DateTime>
|
ParentComment
Gets the comment related to this reply.
Declaration
public SpreadsheetComment ParentComment { get; }
Property Value
SpreadsheetComment
The text value. |
RelatedCellIndex
Gets the cell index assigned to the parent comment. Setting it will push the change in the undo stack.
Declaration
public CellIndex RelatedCellIndex { get; }
Property Value
CellIndex
The cell index. |
Implements
Text
Gets or sets the text. Setting it will push the change in the undo stack.
Declaration
public string Text { get; set; }
Property Value
System.String
The text value. |
Implements
Methods
SetAuthorName(String)
Sets the author`s name.
Declaration
protected void SetAuthorName(string value)
Parameters
System.String
value
|