|
i am trying to change the indentation of a style. i thought to first print all the properties of a named style, but it returns s string instead of a hash.
#lib_doc and doc_styles are existing here
my $new_style = $lib_doc->textStyle($hga);
my $rc = $doc_styles->createStyle($new_style, source=> $lib_style);
if(!$rc){
print "style could not be created\n";
}else{
print "style created $new_style \n";
my $prop = $doc_styles->styleProperties($rc);
print "Style properties -> " . Dumper($prop);
}
just prints $VAR1 = '4/8'
|