PdfSharp.Fonts.OpenType.GlyphDataTable.PrepareForCompilation C# (CSharp) Method

PrepareForCompilation() public method

Prepares the font table to be compiled into its binary representation.
public PrepareForCompilation ( ) : void
return void
    public override void PrepareForCompilation()
    {
      base.PrepareForCompilation();

      if (DirectoryEntry.Length == 0)
        DirectoryEntry.Length = this.glyphTable.Length;
      DirectoryEntry.CheckSum = CalcChecksum(this.glyphTable);
    }