Interface IFontsSubsystem

Interface IFontsSubsystem

Il nome: Aspose.Note.Fonts Assemblea: Aspose.Note.dll (25.4.0)

Implementare questa interfaccia se si desidera controllare come Aspose.Note riceve fonti quando si salva un documento.

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

Methods

Riflessioni su String (String)

Riceviamo la Famiglia.

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

Parameters

fontName string

Il nome del font.

Returns

FontFamily

Il sistema.Drawing.FontFamily

 Italiano