IPdfDocument Interface |
Namespace: Opait.Barcoder.Api
public interface IPdfDocument : IDisposable
The IPdfDocument type exposes the following members.
| Name | Description | |
|---|---|---|
| AddPage |
Creates a new blank PDF page.
| |
| AddPage(IPdfPage) |
Creates a new PDF page as a copy of the specified source page.
| |
| BeginSave |
Begin incremental save of PDF document to the specified file.
Must call EndSave(IPdfDocument) after all pages have been saved.
| |
| EndSave |
End the incremental save. No more pages can be added after this call.
| |
| GetPage |
Gets the PDF page at the specified zero-based index.
| |
| Save(Stream, IPdfDocument) |
Save the PDF document to the specified stream.
| |
| Save(String, IPdfDocument) |
Save the PDF document to the specified file.
| |
| SavePage |
Save the specified page. Pages should be saved in sequence as part
of the incremental save.
| |
| SavePages |
Saves all unsaved pages. More pages can still be added until EndSave(IPdfDocument) is called.
|