Back to Devexpress

PdfMarkupAnnotationFacade.Author Property

officefileapi-devexpress-dot-pdf-dot-pdfmarkupannotationfacade-9dd400d7.md

latest2.4 KB
Original Source

PdfMarkupAnnotationFacade.Author Property

Specifies the annotation author.

Namespace : DevExpress.Pdf

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

NuGet Package : DevExpress.Pdf.Core

Declaration

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

Property Value

TypeDescription
String

The annotation’s author.

|

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Author 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.

winforms-pdf-viewer-redaction-annotations/CS/DXApplication1/Form1.cs#L50

csharp
PdfRedactAnnotationFacade redactAnnotation = documentFacade.Pages[rect.PageIndex].AddRedactAnnotation(bounds);
redactAnnotation.Author = "Jane Doe";
redactAnnotation.FillColor = new PdfRGBColor(0, 0, 0);

winforms-pdf-viewer-redaction-annotations/VB/DXApplication1/Form1.vb#L35

vb
Dim redactAnnotation As PdfRedactAnnotationFacade = documentFacade.Pages(rect.PageIndex).AddRedactAnnotation(bounds)
redactAnnotation.Author = "Jane Doe"
redactAnnotation.FillColor = New PdfRGBColor(0, 0, 0)

See Also

PdfMarkupAnnotationFacade Class

PdfMarkupAnnotationFacade Members

DevExpress.Pdf Namespace