Lines Matching refs:style

633      * @param string $style Name of the style to use for the paragraph
638 function p_open($style=NULL){ argument
639 $this->document->paragraphOpen($style);
1045 * @param string $style
1048 function _preformatted($text, $style=null, $notescaped=true) { argument
1049 $this->document->addPreformattedText($text, $style, $notescaped);
1065 $style = clone($this->document->getStyle($body));
1066 if (isset($style)) {
1067 $style->setProperty('style-name', $style_name);
1068 $style->setProperty('margin-top', NULL);
1069 $style->setProperty('margin-bottom', NULL);
1070 $this->document->addAutomaticStyle($style);
1090 $style = clone($this->document->getStyle($ol));
1091 if (isset($style)) {
1092 $style->setProperty('style-name', $style_name);
1093 … $style->setPropertyForLevel(1, 'text-style-name', 'highlight_list_numbers_text_style');
1094 $style->setPropertyForLevel(1, 'text-align', 'left');
1095 … $style->setPropertyForLevel(1, 'list-level-position-and-space-mode', 'label-alignment');
1096 $style->setPropertyForLevel(1, 'label-followed-by', 'listtab');
1097 $style->setPropertyForLevel(1, 'list-tab-stop-position', '1cm');
1098 $style->setPropertyForLevel(1, 'text-indent', '-1cm');
1099 $style->setPropertyForLevel(1, 'margin-left', '1cm');
1100 $this->document->addAutomaticStyle($style);
1611 …ngAsSVGImage($string, $width = NULL, $height = NULL, $align = NULL, $title = NULL, $style = NULL) { argument
1612 $this->document->addStringAsSVGImage($string, $width, $height, $align, $title, $style);
1650 * @param string $style Optional "draw:style-name"
1656 …function _odtAddImage($src, $width = NULL, $height = NULL, $align = NULL, $title = NULL, $style = … argument
1658 … return $this->document->addImage($src, $width, $height, $align, $title, $style, $returnonly);
1660 $this->document->addImage($src, $width, $height, $align, $title, $style, $returnonly);