Is there a simple way to reduce the Font Size in Word / Excel etc by 1 step in VBA?
So, say if my Font size was 48 could I reduce it to 36, easily, as per the Font drop down in the standard Word 2007 Font group, rather than reducing the font size by 12 – I will not know what the next font size down is…
So rather than setting Font Size explicitly by float :
MyText.Font.Size = 36;
could I do something like :
MyText.Font.Size -= Reduce by 1 step;.... forgive the pseudo code!
For Excel, you can check the Font Size combobox on the Formatting toolbar. That’s 2003 stuff and I think it will still work in 2007 and beyond, but I don’t have it available to test.