> > > Basically kind of like it's > > possible in JavaScript (element.style.property = ...). I was of the > > opinion that this was possible in Batik but I can't seem to find out > > how. >
This should be possible using the following syntax:
element.style.setProperty(''opacity", "1", "");
The last argument is for priority: "important" or ""
Not sure whether there is a getProperty method, you should use
getComputedStyle on document's defaultView for that purpose.
