Lines Matching refs:properties

177             $properties = array();
178 $doc->getCSSStylePropertiesForODT ($properties, $styleH);
179 $properties ['style-parent'] = 'Heading';
180 $properties ['style-class'] = 'index';
181 $properties ['style-name'] = 'Contents_20_Heading_'.$indexNo;
182 $properties ['style-display-name'] = 'Contents Heading '.$indexNo;
183 $style_obj = ODTParagraphStyle::createParagraphStyle($properties);
195 $properties = array();
196 $doc->getCSSStylePropertiesForODT ($properties, $stylesL [$count+1]);
197 $properties ['style-parent'] = 'Index';
198 $properties ['style-class'] = 'index';
199 $properties ['style-position'] = $settings ['width'] - $indent .'cm';
200 $properties ['style-type'] = 'right';
201 $properties ['style-leader-style'] = 'dotted';
202 $properties ['style-leader-text'] = $leader_sign;
203 $properties ['margin-left'] = $indent.'cm';
204 $properties ['margin-right'] = '0cm';
205 $properties ['text-indent'] = '0cm';
206 $properties ['style-name'] = 'ToC '.$indexNo.'- Level '.($count+1);
207 $properties ['style-display-name'] = 'ToC '.$indexNo.', Level '.($count+1);
208 $style_obj = ODTParagraphStyle::createParagraphStyle($properties);
218 $properties ['style-parent'] = $style_obj->getProperty('style-name');
219 $properties ['style-class'] = NULL;
220 $properties ['style-name'] = 'ToC Auto '.$indexNo.'- Level '.($count+1);
221 $properties ['style-display-name'] = NULL;
222 $style_obj_auto = ODTParagraphStyle::createParagraphStyle($properties);
234 $properties = array();
235 $doc->getCSSStylePropertiesForODT ($properties, $stylesL [$count+1]);
236 $properties ['style-name'] = 'ToC '.$indexNo.'- Text Level '.($count+1);
237 $properties ['style-display-name'] = 'ToC '.$indexNo.', Level '.($count+1);
238 $style_obj = ODTTextStyle::createTextStyle($properties);