[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.DocumentProperties.Producer

Producer Property

Producer

Gets or sets the name of the application or library that produced the PDF document.

Declaration
public string Producer { get; set; }
Public Property Producer As String
Property Value
Type Description
string

The name of the application or library that produced the PDF document. Returns null if no producer has been set.

Examples
DocumentProperties properties = new DocumentProperties();
properties.Producer = "PDF Exporter";
string producer = properties.Producer;