Lines Matching +full:format +(+path:plugin +path:odt) -(+path:plugin +path:odt +path:lang)

125         // Set standard page format: A4, portrait, 2cm margins
308 // Only insert bookmark/pagebreak/format change if text is not empty.
314 // Insert pagebreak or page format change if still pending.
393 * Automatically generate ODT format for $HTMLCode
554 * Check if a page format change is pending
867 * This function creates a style for changing the page format if required.
868 * It returns NULL if no page format change is pending or if the current
869 * page format is equal to the required page format.
872 * @return string Name of the style to be used for changing page format
889 …$format_string = $this->page->formatToString ($data['format'], $data['orientation'], $data['margin…
905 // Save style data in page style array, in common styles and set current page format
909 …$this->page->setFormat($data ['format'], $data ['orientation'], $data['margin-top'], $data['margin…
1398 $outline_style->setPropertyForLevel($level, 'num-format', '1');
1626 * This function sets the page format for the FIRST page.
1627 * The format, orientation and page margins can be changed.
1630 * @param string $format e.g. 'A4', 'A3'
1637 …public function setStartPageFormat ($format=NULL, $orientation=NULL, $margin_top=NULL, $margin_rig… argument
1638 // Setup page format.
1639 // Set the page format of the current page for calculation ($this->page)
1641 ($format, $orientation, $margin_top, $margin_right, $margin_bottom, $margin_left);
1656 * This function sets the page format.
1657 * The format, orientation and page margins can be changed.
1660 * @param string $format e.g. 'A4', 'A3'
1667 …public function setPageFormat ($format=NULL, $orientation=NULL, $margin_top=NULL, $margin_right=NU… argument
1671 if ( empty($format) ) {
1672 $format = $this->page->getFormat();
1690 // Adjust given parameters, query resulting format data and get format-string
1691 …$this->page->queryFormat ($data, $format, $orientation, $margin_top, $margin_right, $margin_bottom…
1692 …$format_string = $this->page->formatToString ($data['format'], $data['orientation'], $data['margin…
1695 // Current page already uses this format, no need to do anything...
1700 // If the text is still empty, then we change the start page format now.
1701 …$this->page->setFormat($data ['format'], $data ['orientation'], $data['margin-top'], $data['margin…
1712 // Set marker and save data for pending change format.
1713 // The format change istelf will be done on the next call to p_open or header()
1714 // to prevent empty lines after the format change.
1780 * Usually "100%" means 21cm in case of A4 format.
1808 * Usually "100%" means 29.7cm in case of A4 format.
2417 * Automatically generate ODT format for given $HTMLCode.