Partager via


DefaultWebOptions.Fonts Property (PowerPoint)

Returns a WebPageFonts collection representing the set of available fonts for saving a presentation as a Web page. Read-only.

Syntax

expression .Fonts

expression A variable that represents a DefaultWebOptions object.

Example

This example sets the fixed-width font default Web option, specified by the character set constant msoCharacterSetEnglishWesternEuropeanOtherLatinScript, to be Courier New 10 points.

With Application.DefaultWebOptions _

    .Fonts(msoCharacterSetEnglishWesternEuropeanOtherLatinScript)

        .FixedWidthFont = "Courier New"

        .FixedWidthFontSize = 10

End With

See Also

Concepts

DefaultWebOptions Object Members

DefaultWebOptions Object