TIEPDFBuilder.SaveToStream
Declaration
procedure SaveToStream(FileStream: TStream;
const PDF_Title: string = '';
const PDF_Author: string = '';
const PDF_Subject: string = '';
const PDF_Keywords: string = '';
const PDF_Creator: string = '';
const PDF_Producer: string = '';
CreationDateTime: TDateTime = 0);
Description
Save the current PDF document to a stream.
| Parameter | Description |
| FileStream | The stream to output to |
| PDF_Title | The title of the document |
| PDF_Author | The author of the document |
| PDF_Subject | The subject of the document |
| PDF_Keywords | Keywords for the document |
| PDF_Creator | The creator of the document |
| PDF_Producer | The producer of the document |
| CreationDateTime | The date the file was created. Pass 0 to use the current date |
Example
pdf.SaveToStream( MyStream );
See Also
◼SaveToFile