A collection of WebPageFont objects that describe the proportional font, proportional font size, fixed-width font, and fixed-width font size used when documents are saved as Web pages. You can specify a different set of Web page font properties for each available character set.
Using the WebPageFonts Collection
The WebPageFonts collection contains one WebPageFont object for each of the following MsoCharacterSet constants:
msoCharacterSetArabic |
msoCharacterSetCyrillic |
msoCharacterSetEnglishWesternEuropeanOtherLatinScript |
msoCharacterSetGreek |
msoCharacterSetHebrew |
msoCharacterSetJapanese |
msoCharacterSetKorean |
msoCharacterSetMultilingualUnicode |
msoCharacterSetSimplifiedChinese |
msoCharacterSetThai |
msoCharacterSetTraditionalChinese |
msoCharacterSetVietnamese |
The following example uses the Item property to set myFont
to the WebPageFont object for the English/Western European/Other Latin Script character set in the current application.
Dim myFont As WebPageFont
Set myFont = _
Application.DefaultWebOptions.Fonts.Item_
(msoCharacterSetEnglishWesternEuropeanOtherLatinScript)