Class Comment
Represents a comment in the document model, providing a way to add notes or annotations to specific parts of the content.
Inherited Members
Namespace: Telerik.Windows.Documents.Model
Assembly: Telerik.Windows.Controls.RichTextBox.dll
Syntax
public class Comment : ChildDocumentContainer
Constructors
Comment()
Declaration
public Comment()
Comment(String)
Declaration
public Comment(string body)
Parameters
System.String
body
|
Comment(RadDocument)
Properties
Author
Gets or sets the author of the comment.
Declaration
[XamlSerializable("")]
public string Author { get; set; }
Property Value
System.String
The name of the author associated with the comment. |
Body
Declaration
[XamlSerializable]
public override RadDocument Body { get; set; }
Property Value
RadDocument
|
Overrides
Name
Gets or sets the name of the comment.
Declaration
[XamlSerializable("")]
public string Name { get; set; }
Property Value
System.String
A string representing the name of the comment. |
Methods
CreateDeepCopy()
Creates a deep copy of the current Comment instance.
Declaration
public Comment CreateDeepCopy()
Returns
Comment
A new Comment instance that is a deep copy of the current instance. |