c# Powerpoint超链接颜色

本文关键字:颜色 超链接 Powerpoint | 更新日期: 2023-09-27 18:12:41

我试图访问powerpoint的超链接和跟随超链接的颜色,但我无法在TextRange.Lines().Characters().ActionSettings[PpMouseActivation.ppMouseClick].Hyperlink

下找到这些属性

有谁知道我如何访问这些颜色吗?

c# Powerpoint超链接颜色

超链接遵循幻灯片的主题颜色。

要修改幻灯片的超链接颜色(在VBA中),您可以这样做:

With oSl ' assuming an object reference to the slide you want to work with
  .ThemeColorScheme.Colors(msoThemeHyperlink).RGB = RGB(255, 0, 0)
End With

msoThemeHyperlink是一个vba Long (c# Integer,我想)= 11

msoThemeFollowedHyperlink = 12