ActiveReports.PdfExport Send comments on this topic.
Title Property
See Also  Example
ActiveReports.PdfExport Assembly > DataDynamics.ActiveReports.Export.Pdf Namespace > PdfDocumentOptions Class : Title Property

Gets or sets the title to display in the Title field on the Description tab of the Document Properties window in the PDF reader.

Syntax

Visual Basic (Declaration) 
Public Property Title As String
C# 
public string Title {get; set;}

Return Value

String.

Example

C#Copy Code
Private void btnExport_Click(object sender, System.EventArgs e)
{
   rptDataDynamics rpt = New rptDataDynamics();
   DataDynamics.ActiveReports.Export.Pdf.PdfExport p = New DataDynamics.ActiveReports.Export.Pdf.PdfExport();
   p.Options.Application =
"Mortimer's Reporting Software";
   p.Options.Author =
"Mortimer";
   p.Options.Keywords =
"annual, report, 2006";
   p.Options.Subject =
"Sales report for 2006";
   p.Options.Title =
"Annual Report";
   rpt.Run();
   
this.arv.Document = rpt.Document;
   p.Export(rpt.Document, Application.StartupPath +
"\\p.pdf");
}
Visual BasicCopy Code
Private Sub btnExport_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
    Dim rpt As New rptDD
    Dim p As New DataDynamics.ActiveReports.Export.Pdf.PdfExport
    With p.Options
        .Application = "Mortimer's Reporting Software"
        .Author = "Mortimer"
        .Keywords = "annual, report, 2006"
        .Subject = "Sales report for 2006"
        .Title = "Annual Report"
    End With
    rpt.Run()
    Me.Viewer1.Document = rpt.Document
    p.Export(rpt.Document, Application.StartupPath & "\p.pdf")
End Sub

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also