Back to Devexpress

PdfMarkupAnnotationComment.Subject Property

officefileapi-devexpress-dot-pdf-dot-pdfmarkupannotationcomment-c7e8107e.md

latest2.3 KB
Original Source

PdfMarkupAnnotationComment.Subject Property

Gets or sets the subject of the comment.

Namespace : DevExpress.Pdf

Assembly : DevExpress.Pdf.v25.2.Core.dll

NuGet Package : DevExpress.Pdf.Core

Declaration

csharp
public string Subject { get; set; }
vb
Public Property Subject As String

Property Value

TypeDescription
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

csharp
PdfMarkupAnnotationComment comment = annotation.AddReply("Reviewer", "Done");
comment.Subject = "Proofread";

pdf-document-api-manage-annotations-in-document/VB/CreateMarkupAnnotation/Program.vb#L71

vb
Dim comment As PdfMarkupAnnotationComment = annotation.AddReply("Reviewer", "Done")
comment.Subject = "Proofread"
'Create a nested comment and add a review:

See Also

PdfMarkupAnnotationComment Class

PdfMarkupAnnotationComment Members

DevExpress.Pdf Namespace