Interface IFontsSubsystem

Interface IFontsSubsystem

Der Name: Aspose.Note.Fonts Zusammensetzung: Aspose.Note.dll (25.4.0)

Implementieren Sie diese Schnittstelle, wenn Sie kontrollieren möchten, wie Aspose.Note Schriftzeichen empfängt beim Speichern eines Dokuments.

public interface IFontsSubsystem
   {
      Font GetFont(string fontName);
      void SetFont(Font font);
   }

Methods

GetFontFamily (String)

Er bekommt die Familie.

FontFamily GetFontFamily(string fontName)
   {
      return new FontFamily(fontName);
   }

Parameters

fontName string

Der Font Name.

Returns

FontFamily

Das System.Drawing.FontFamily

 Deutsch