javascript - Finding the bounding box for a shape in VML -


how find bounding box values of shape in vml using javascript?

for example consider following shape element,

<v:shape style="height: 200px; position: absolute; left: 1px; top: 1px; width: 200px" coordsize = "1000,1000" fillcolor = "green" path = " m1,50 l1,1,200,200,1,0 e"></v:shape>

in above vml element, coordsize attribute represents height , width of element can explain how coordsize attribute set vml element default.

in svg, can find bounding box of shape in javascript using getbbox() method. there method available bounding box values vml element in javascript?

we not using third party javascript plug-ins, using javascript.


Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -