This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
microsoft:officevba [2020-01-02 14:08] – [PowerPoint VBA] admin | microsoft:officevba [2023-10-26 20:04] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ==== Microsoft Office VBA ==== | + | ===== Microsoft Office VBA ===== |
- | === General VBA === | + | ==== General VBA ==== |
- | == Colors in UserForms == | + | === Add-in in Developer VBA IDE (debug) === |
+ | * '' | ||
+ | === Colors in UserForms | ||
{{: | {{: | ||
- | === PowerPoint VBA === | + | ==== PowerPoint VBA ==== |
- | == Font == | + | === Font === |
* Change font to Headings or Body font: | * Change font to Headings or Body font: | ||
* {object}.Font.Name = " | * {object}.Font.Name = " | ||
Line 10: | Line 12: | ||
* FontLang is " | * FontLang is " | ||
* For example to set the font to the theme' | * For example to set the font to the theme' | ||
- | == PasteSpecial == | + | === ThemeColors === |
+ | ^ Name ^ Value ^ Description | ||
+ | | msoNotThemeColor | 0 | Specifies no theme color| | ||
+ | | msoThemeColorAccent1 | 5 | Specifies the Accent 1 theme color| | ||
+ | | msoThemeColorAccent2 | 6 | Specifies the Accent 2 theme color| | ||
+ | | msoThemeColorAccent3 | 7 | Specifies the Accent 3 theme color| | ||
+ | | msoThemeColorAccent4 | 8 | Specifies the Accent 4 theme color| | ||
+ | | msoThemeColorAccent5 | 9 | Specifies the Accent 5 theme color| | ||
+ | | msoThemeColorAccent6 | 10 | Specifies the Accent 6 theme color| | ||
+ | | msoThemeColorBackground1 | 14 | Specifies the Background 1 theme color| | ||
+ | | msoThemeColorBackground2 | 16 | Specifies the Background 2 theme color| | ||
+ | | msoThemeColorDark1 | 1 | Specifies the Dark 1 theme color| | ||
+ | | msoThemeColorDark2 | 3 | Specifies the Dark 2 theme color| | ||
+ | | msoThemeColorFollowedHyperlink | 12 | Specifies the theme color for a clicked hyperlink| | ||
+ | | msoThemeColorHyperlink | 11 | Specifies the theme color for a hyperlink| | ||
+ | | msoThemeColorLight1 | 2 | Specifies the Light 1 theme color| | ||
+ | | msoThemeColorLight2 | 4 | Specifies the Light 2 theme color| | ||
+ | | msoThemeColorMixed | -2 | Specifies a mixed color theme| | ||
+ | | msoThemeColorText1 | 13 | Specifies the Text 1 theme color| | ||
+ | | msoThemeColorText2 | 15 | Specifies the Text 2 theme color| | ||
+ | |||
+ | === PasteSpecial | ||
* PasteSpecial values: | * PasteSpecial values: | ||
Line 42: | Line 65: | ||
End Sub | End Sub | ||
</ | </ | ||
+ | ==== Office Ribbon ==== | ||
+ | === Office RibbonX Editor === | ||
+ | * https:// | ||
+ | === Microsoft Docs === | ||
+ | * [[https:// | ||
+ | * [[https:// |