PdfSharp.Fonts.OpenType.ControlValueTable.Read C# (CSharp) Method

Read() public method

public Read ( ) : void
return void
    public void Read()
    {
      try
      {
        int length = DirectoryEntry.Length / 2;
        this.array = new FWord[length];
        for (int idx = 0; idx < length; idx++)
          this.array[idx] = this.fontData.ReadFWord();
      }
      catch (Exception ex)
      {
        throw new PdfSharpException(PSSR.ErrorReadingFontData, ex);
      }
    }
  }
ControlValueTable