21-08-2006 15:26:56
How can I set the thickness of the electron flow arrow from API?
Can somebody show me an example?
Thanks.
Can somebody show me an example?
Thanks.
21-08-2006 15:26:56
ChemAxon 7c2d26e5cf
21-08-2006 15:28:51
Code: |
MDocument doc = sketchpanel.getDocument(); for(int i=0;i < doc.getObjectCount(); i++) { MObject mobj = doc.getObject(i); if(mobj instanceof MEFlow) { MEFlow eflow = (MEFlow)mobj; eflow.setThickness(eflow.getThickness()*2)); } } |