Reputation: 29
I have a simple shape in PPTx
and I saw and got Its position in Openxml
<a:xfrm>
<a:off x="1447800" y="1066800" />
<a:ext cx="3886200" cy="990600" />
</a:xfrm>
I got out this values
but I don't known how to get with, height, and coordinate (left, top) of shape in Open xml to show in wpf with the same with, height and position.
Upvotes: 3
Views: 2114
Reputation: 29153
Divide those values by 12700 for point values (what WPF uses). So it would be:
Upvotes: 5