PdfSharp.Fonts.OpenType.PostScriptTable.Read C# (CSharp) Méthode

Read() public méthode

public Read ( ) : void
Résultat void
    public void Read()
    {
      try
      {
        this.formatType = this.fontData.ReadFixed();
        this.italicAngle = this.fontData.ReadFixed() / 65536f;
        this.underlinePosition = this.fontData.ReadFWord();
        this.underlineThickness = this.fontData.ReadFWord();
        this.isFixedPitch = this.fontData.ReadULong();
        this.minMemType42 = this.fontData.ReadULong();
        this.maxMemType42 = this.fontData.ReadULong();
        this.minMemType1 = this.fontData.ReadULong();
        this.maxMemType1 = this.fontData.ReadULong();
      }
      catch (Exception ex)
      {
        throw new PdfSharpException(PSSR.ErrorReadingFontData, ex);
      }
    }
  }