ActiveReports.PdfExport Request technical support
Version Property
See Also  Example


Gets or sets the version of the PDF format to which the exported document is saved.

Syntax

Visual Basic (Declaration) 
Public Property Version As PdfVersion
Visual Basic (Usage)Copy Code
Dim instance As PdfExport
Dim value As PdfVersion
 
instance.Version = value
 
value = instance.Version
C# 
public PdfVersion Version {get; set;}

Return Value

PdfVersion enumeration.  The default value is Pdf13 (PDF version 1.3. This is the native file format of Acrobat 4.0.)

Example

C#Copy Code
privateAvoidAbtnExport_Click(objectAsender,ASystem.EventArgsAe)
{
AAAArptDataDynamicsArptA=AnewArptDataDynamics();
AAAADataDynamics.ActiveReports.Export.Pdf.PdfExportApA=AnewADataDynamics.ActiveReports.Export.Pdf.PdfExport();
AAAAp.VersionA=ADataDynamics.ActiveReports.Export.Pdf.PdfVersion.Pdf11;
AAAArpt.Run();
AAAAthis.arv.DocumentA=Arpt.Document;
AAAAp.Export(rpt.Document,AApplication.StartupPathA+A"\\p.pdf");
}
Visual BasicCopy Code
PrivateASubAbtnExport_Click(ByValAsenderAAsASystem.Object,AByValAeAAsASystem.EventArgs)AHandlesAButton2.Click
AAAADimArptAAsANewArptDD
AAAADimApAAsANewADataDynamics.ActiveReports.Export.Pdf.PdfExport
AAAAp.VersionA=ADataDynamics.ActiveReports.Export.Pdf.PdfVersion.Pdf11
AAAArpt.Run()
AAAAMe.Viewer1.DocumentA=Arpt.Document
AAAAp.Export(rpt.Document,AApplication.StartupPathA&A"\p.pdf")
EndASub

See Also