PdfSharp.Xps.Rendering.PdfContentWriter.WriteGlyphs_Indices1 C# (CSharp) Méthode

WriteGlyphs_Indices1() private méthode

private WriteGlyphs_Indices1 ( PdfSharp.Xps.XpsModel.Glyphs glyphs, string text ) : void
glyphs PdfSharp.Xps.XpsModel.Glyphs
text string
Résultat void
    private void WriteGlyphs_Indices1(Glyphs glyphs, string text)
    {
      GlyphIndicesComplexity complexity = glyphs.Indices.Complexity;
      complexity = GlyphIndicesComplexity.ClusterMapping;
      switch (complexity)
      {
        case GlyphIndicesComplexity.None:
          break;

        case GlyphIndicesComplexity.DistanceOnly:
          break;

        case GlyphIndicesComplexity.GlyphIndicesAndDistanceOnly:
          break;

        case GlyphIndicesComplexity.ClusterMapping:
          WriteGlyphs_ClusterMapping(glyphs, text);
          break;
      }
    }