MindFusion.Wpf Pack Programmer's Guide
Report.ExportPdf Method
See Also
 





Exports the items in the specified range from the underlying schedule as PDF.

Namespace: MindFusion.Scheduling.Reporting
Assembly: MindFusion.Scheduling.Wpf.Reporting

 Syntax

C#  Copy Code

public void ExportPdf (
    string filePath,
    DateTime start,
    DateTime end
)

Visual Basic  Copy Code

Public Sub ExportPdf( _
    filePath As String, _
    start As DateTime, _
    end As DateTime _
)

 Parameters

filePath

The name of the PDF file to export to.

start
A DateTime object, specifying the beginning of the time interval containing the items to be included in the report.
end
A DateTime object, specifying the end of the time interval containing the items to be included in the report.

 Remarks

You would usually specify DateTime.MinValue and DateTime.MaxValue for the start and end parameters respectively, in order to include all items in the report. However, this can be dangerous when there are infinite recurring items. In this case the report generation might take considerable amount of time.

 See Also

Report Members
Report Class
MindFusion.Scheduling.Reporting Namespace