Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
microsoft:office [2018-08-08 17:39] – created adminmicrosoft:office [2023-10-26 20:04] (current) – external edit 127.0.0.1
Line 5: Line 5:
     * See https://support.microsoft.com/en-us/help/827745/how-to-change-the-export-resolution-of-a-powerpoint-slide     * See https://support.microsoft.com/en-us/help/827745/how-to-change-the-export-resolution-of-a-powerpoint-slide
  
 +  * VBA to change font to Headings or Body font: 
 +    * {object}.Font.Name = "+" + FontType + "-" + FontLang 
 +      * FontType is "mj" or "mn" for Major (headings) or Minor (body) respectively. 
 +      * FontLang is "lt", "cs" or "ea" for Latin, Complex Scripts or East Asian 
 +    * For example to set the font to the theme's body text font for Latin text: ''ActivePresentation.Slides(1).Shapes(1).TextFrame.TextRange.Font.Name = "+mn-lt"''