| Package | com.flexicious.controls.interfaces | 
| Interface | public interface IPDFPrinter | 
| Method | Defined By | ||
|---|---|---|---|
addPage(page:DisplayObject, printOptions:PrintOptions):void 
		 For each page generated by the Print Controller, this method is called.  | IPDFPrinter | ||
beginDocument(printOptions:PrintOptions):void 
		 Called when the Print controller is ready to send out the pages.  | IPDFPrinter | ||
endDocument(printOptions:PrintOptions):void 
		 Once all pages are added to the doc, this method is called.  | IPDFPrinter | ||
| addPage | () | method | 
 public function addPage(page:DisplayObject, printOptions:PrintOptions):voidFor each page generated by the Print Controller, this method is called.
Parameters
page:DisplayObject — The currently added page
		  | |
printOptions:PrintOptions — The printOptions that started the pdf
		  | 
| beginDocument | () | method | 
 public function beginDocument(printOptions:PrintOptions):voidCalled when the Print controller is ready to send out the pages.
Parameters
printOptions:PrintOptions — The printOptions that started the pdf
		  | 
| endDocument | () | method | 
 public function endDocument(printOptions:PrintOptions):voidOnce all pages are added to the doc, this method is called.
Parameters
printOptions:PrintOptions — The printOptions that started the pdf
		  |