Home
last modified time | relevance | path

Searched refs:setProperty (Results 101 – 125 of 127) sorted by path

123456

/plugin/odt/ODT/
H A DODTDocument.php1646 $first_page->setProperty('width', $this->page->getWidth().'cm');
1647 $first_page->setProperty('height', $this->page->getHeight().'cm');
1648 $first_page->setProperty('margin-top', $this->page->getMarginTop().'cm');
1649 $first_page->setProperty('margin-right', $this->page->getMarginRight().'cm');
1650 $first_page->setProperty('margin-bottom', $this->page->getMarginBottom().'cm');
1651 $first_page->setProperty('margin-left', $this->page->getMarginLeft().'cm');
1704 $first_page->setProperty('width', $this->page->getWidth().'cm');
1705 $first_page->setProperty('height', $this->page->getHeight().'cm');
1706 $first_page->setProperty('margin-top', $this->page->getMarginTop().'cm');
2259 $style->setProperty('font-size', $fontSizeInPt.'pt');
[all …]
H A DODTExport.php169 $dest->setProperty('width', $source->getProperty('width'));
170 $dest->setProperty('height', $source->getProperty('height'));
171 $dest->setProperty('margin-top', $source->getProperty('margin-top'));
172 $dest->setProperty('margin-right', $source->getProperty('margin-right'));
173 $dest->setProperty('margin-bottom', $source->getProperty('margin-bottom'));
174 $dest->setProperty('margin-left', $source->getProperty('margin-left'));
H A DODTImport.php748 $pageStyle->setProperty('background-color', $properties ['background-color']);
H A DODTList.php258 $style_obj->setProperty('style-name', $style_name);
259 $style_obj->setProperty('style-parent', $last_p_style);
260 $style_obj->setProperty('style-display-name', $style_display_name);
263 … $style_obj->setProperty('margin-top', $style_body->getProperty('margin-top'));
H A DODTParagraph.php74 $styleObj->setProperty('style-name', $styleNameFirst);
75 $styleObj->setProperty('style-parent', $styleName);
76 $styleObj->setProperty('style-display-name', $styleDisplayName);
79 … $styleObj->setProperty('margin-bottom', $styleBody->getProperty('margin-bottom'));
H A DODTTable.php58 $style_obj->setProperty('style-name', $style_name);
62 $style_obj->setProperty('margin-left', ($indent).'cm');
64 $style_obj->setProperty('width', ($max-$indent).'cm');
66 $style_obj->setProperty('align', 'left');
600 $style_obj->setProperty('column-width', $width);
/plugin/odt/ODT/elements/
H A DODTElementTable.php429 $style_obj->setProperty('width', $width.'pt');
443 $style_obj->setProperty('rel-width', $rel_width.'%');
522 $column->setProperty('column-width', $width.'pt');
523 $column->setProperty('rel-column-width', NULL);
529 $column ['obj']->setProperty('column-width', $width.'pt');
530 $column ['obj']->setProperty('rel-column-width', NULL);
/plugin/odt/ODT/styles/
H A DODTMasterPageStyle.php77 public function setProperty($property, $value) { function in ODTMasterPageStyle
H A DODTPageLayoutStyle.php158 public function setProperty($property, $value) { function in ODTPageLayoutStyle
H A DODTParagraphStyle.php108 $this->setProperty($property, $value);
137 public function setProperty($property, $value) { function in ODTParagraphStyle
476 $dest -> setProperty($property, $value);
484 $dest -> setProperty($property, $value);
493 $dest -> setProperty($property, $value);
H A DODTStyle.php69 abstract public function setProperty($property, $value); function in ODTStyle
H A DODTTableCellStyle.php89 $this->setProperty('style-family', $this->getFamily());
116 public function setProperty($property, $value) { function in ODTTableCellStyle
H A DODTTableColumnStyle.php45 $this->setProperty('style-family', $this->getFamily());
72 public function setProperty($property, $value) { function in ODTTableColumnStyle
H A DODTTableRowStyle.php64 $this->setProperty('style-family', $this->getFamily());
91 public function setProperty($property, $value) { function in ODTTableRowStyle
H A DODTTableStyle.php74 $this->setProperty('style-family', $this->getFamily());
101 public function setProperty($property, $value) { function in ODTTableStyle
H A DODTTextListStyle.php118 public function setProperty($property, $value) { function in ODTTextListStyle
H A DODTTextOutlineStyle.php87 public function setProperty($property, $value) { function in ODTTextOutlineStyle
H A DODTTextStyle.php137 $this->setProperty('style-family', $this->getFamily());
164 public function setProperty($property, $value) { function in ODTTextStyle
H A DODTUnknownStyle.php78 public function setProperty($property, $value) { function in ODTUnknownStyle
/plugin/odt/renderer/
H A Dpage.php1067 $style->setProperty('style-name', $style_name);
1068 $style->setProperty('margin-top', NULL);
1069 $style->setProperty('margin-bottom', NULL);
1092 $style->setProperty('style-name', $style_name);
/plugin/pdfjs/pdfjs/web/
H A Dviewer.js9377 this.doc.style.setProperty(SIDEBAR_WIDTH_VAR, "".concat(width, "px"));
H A Dviewer.js.map1 … return false;\n }\n this._width = width;\n this.doc.style.setProperty(SIDEBAR_WIDTH_V…
/plugin/processing/
H A Dscript.js7371 curElement.style.setProperty("image-rendering", "optimizeQuality", "important");
7378 curElement.style.setProperty("image-rendering", "optimizeSpeed", "important");
/plugin/revealjs/js/
H A Dreveal.js2248 document.documentElement.style.setProperty( '--vh', ( window.innerHeight * 0.01 ) + 'px' );
/plugin/sequencediagram/bower_components/lodash/test/
H A Dtest.js568 setProperty(root, 'Map', Map);
575 setProperty(root, 'Promise', noop);
576 setProperty(root, 'Set', noop);
577 setProperty(root, 'Symbol', undefined);
578 setProperty(root, 'WeakMap', noop);
581 setProperty(root, 'WinRTError', Error);
591 setProperty(Object, 'create', create);
593 setProperty(root, 'Buffer', Buffer);
601 setProperty(root, 'Map', Map);
611 setProperty(root, 'Set', Set);
[all …]

123456