Saut De Ligne PDFsharp

J'essaie d'obtenir une nouvelle ligne mais si j'utilise n cela n'aide en aucun cas à avoir une nouvelle ligne en ajoutant quelque chose à la chaîne comme rn (ne fonctionne pas)

gfx.DrawString("Project No n" + textBoxProjNumber.Text, fontUnder, XBrushes.Black, 230, 95);

Ne fonctionne pas.

25
demandé sur Lonely Neuron 2011-03-16 01:11:25

2 réponses

Avez-vous essayé la classe XTextFormatter?

Voir ici: http://www.pdfsharp.net/wiki/TextLayout-sample.ashx

Extrait de Code:

PdfDocument document = new PdfDocument();

PdfPage page = document.AddPage();
XGraphics gfx = XGraphics.FromPdfPage(page);
XFont font = new XFont("Times New Roman", 10, XFontStyle.Bold);
XTextFormatter tf = new XTextFormatter(gfx);

XRect rect = new XRect(40, 100, 250, 220);
gfx.DrawRectangle(XBrushes.SeaShell, rect);
tf.DrawString(text, font, XBrushes.Black, rect, XStringFormats.TopLeft);
29
répondu The sky is the limit 2015-07-01 07:35:47

C'est ce que j'ai fait qui n'implique pas l'utilisation de la classe Rect:

J'avais une limite latérale droite définie et déterminé si la chaîne actuelle serait plus grande que les limites définies. S'il l'était, je l'ai écrit. Sinon, j'ai continué à en rajouter.

foreach (string field in temp)
{
    if (field == string.Empty)
    {
        continue;
    }
    else
    {
        tempSB.Clear();
        tempSB.Append(sb.ToString());
        tempSB.Append(field).Append(", ");  //append the incoming value to SB for size testing

        if (gfx.MeasureString(tempSB.ToString(), defaultFont).Width > 500)  //if the incoming string is bigger than the right bounds, write it and clear SB
        {
            gfx.DrawString(sb.ToString(), defaultFont, blackBrush, 50, currentLine + defaultSpacing);
            currentLine += 15;
            sb.Clear();
            sb.Append(" " + field).Append(",");  //add the overflow to the beginning of the next line
         }
         else
         {
             sb.Append(field).Append(", ");  //if it is not too big, append it
         }
     }

 }
 if (sb.Length > 0 && sb[sb.Length - 1] == ',') sb.Length--;
 gfx.DrawString(sb.ToString(), defaultFont, blackBrush, 50, currentLine + defaultSpacing); //write out whatever has not already been written out

Je sais que je suis en retard à cette question, mais j'espère que cela peut aider quelqu'un.

0
répondu wbt11a 2017-06-29 15:30:42