|
Prev: Creating a customized toolbar (ruler) for word 2007 macros
Next: Referring to Macrobutton Field properties without selecting th
From: avkokin on 3 Jul 2008 09:37 Hello. The document has a lot of the formulas (as pictures). The formulas has different dimensions: very big, normal and small. I need to reduce they to some equal dimension (to reduce to common denominator). I have code but the result of work not suit for me: e.g. the text into the big formulas converges and other problems. Here the code: Sub changeImages() Dim iShape As InlineShape For Each iShape In ActiveDocument.InlineShapes iShape.Height = 17 iShape.Width = 138 Next iShape End Sub How to scale down or to scale up proportionally dimensions of the all formulas (pictures)? Thank you. |