officefileapi-devexpress-dot-pdf-dot-pdfmarkupannotationcomment-c7e8107e.md
Gets or sets the subject of the comment.
Namespace : DevExpress.Pdf
Assembly : DevExpress.Pdf.v25.2.Core.dll
NuGet Package : DevExpress.Pdf.Core
public string Subject { get; set; }
Public Property Subject As String
| Type | Description |
|---|---|
| String |
The comment’s subject.
|
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Subject property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
pdf-document-api-manage-annotations-in-document/CS/CreateMarkupAnnotation/Program.cs#L90
PdfMarkupAnnotationComment comment = annotation.AddReply("Reviewer", "Done");
comment.Subject = "Proofread";
pdf-document-api-manage-annotations-in-document/VB/CreateMarkupAnnotation/Program.vb#L71
Dim comment As PdfMarkupAnnotationComment = annotation.AddReply("Reviewer", "Done")
comment.Subject = "Proofread"
'Create a nested comment and add a review:
See Also
PdfMarkupAnnotationComment Class