exclude_fonts property

exclude_fonts property

The property disables adding any fonts into the HTML document.

By default, GroupDocs.Viewer embeds the fonts used in the document into the HTML markup, and this property has a False value. To prevent embedding fonts, set this property to True.

For details and a code example, see the documentation.

Definition:

@property
def exclude_fonts(self):
    ...
@exclude_fonts.setter
def exclude_fonts(self, value):
    ...

See Also