vb.net - GraphicsPath start point -


can start point of graphics set?, when i'm adding string path drawing path start point differ, there way set start point??

also there way read ai or svg files using vb.net?

thank you.

i believe you're wanting apply transformation graphics object, here example.

private sub form1_paint(sender object, e painteventargs) handles me.paint     e.graphics.drawrectangle(pens.red, 0, 0, 100, 100)     e.graphics.translatetransform(10.0f, 10.0f)     e.graphics.drawrectangle(pens.red, 0, 0, 100, 100) end sub 

notice once call translatetransform subsequent calls draw operations offset 10px top left. can revert transformation calling e.graphics.resettransform()


Comments

Popular posts from this blog

c# - Validate object ID from GET to POST -

node.js - Custom Model Validator SailsJS -

php - Find a regex to take part of Email -