[]
Gets or sets the name of the application or library that produced the PDF document.
public string Producer { get; set; }
Public Property Producer As String
| Type | Description |
|---|---|
| string | The name of the application or library that produced the PDF document. Returns null if no producer has been set. |
DocumentProperties properties = new DocumentProperties();
properties.Producer = "PDF Exporter";
string producer = properties.Producer;