Align Two Paragraphs in One Line

5.1k Views Asked by At

I'm using MigraDoc to create PDF file. I'm adding two paragraph in a textframe. One paragraph is a label while the other is a textbox. After adding the paragraphs to textframe I added the textframe to table row cell. Currently the textbox location goes below the label. I want it to be just beside the label or they are just in one line. Anyone knows the solution for this? Please help. Here's my code and image

Code:

 static void AddTextBlockAndTextBoxToRow(Row row, int cellIndex, Paragraph label, Paragraph textbox)
        {
            var textFrame = new TextFrame();
            label.Format.Alignment = ParagraphAlignment.Left;
            textbox.Format.Alignment = ParagraphAlignment.Left;
            textFrame.Add(label);
            textFrame.Add(textbox);
            row.Cells[cellIndex].Add(textFrame);
        }

Image

enter image description here

3

There are 3 best solutions below

2
On

Sample table program in pdfsharp....

Table table = document.LastSection.AddTable();
table.Borders.Visible = true;
table.Format.Shading.Color = Colors.LavenderBlush;
table.Shading.Color = Colors.Salmon;
table.TopPadding = 5;
table.BottomPadding = 5;

Column column = table.AddColumn();
column.Format.Alignment = ParagraphAlignment.Left;

column = table.AddColumn();
column.Format.Alignment = ParagraphAlignment.Center;

column = table.AddColumn();
column.Format.Alignment = ParagraphAlignment.Right;

table.Rows.Height = 35;

Row row = table.AddRow();
row.VerticalAlignment = VerticalAlignment.Top;
row.Cells[0].AddParagraph("Text");
row.Cells[1].AddParagraph("Text");
row.Cells[2].AddParagraph("Text");

row = table.AddRow();
row.VerticalAlignment = VerticalAlignment.Center;
row.Cells[0].AddParagraph("Text");
row.Cells[1].AddParagraph("Text");
row.Cells[2].AddParagraph("Text");

row = table.AddRow();
row.VerticalAlignment = VerticalAlignment.Bottom;
row.Cells[0].AddParagraph("Text");
row.Cells[1].AddParagraph("Text");
row.Cells[2].AddParagraph("Text");
4
On

MigraDoc cannot easily show two paragraphs side by side. Not in one table cell, not in one TextFrame.

You could create a table with two columns inside your TextFrame to work around this limitation.

Or do it without TextFrame and create two cells in the main table (you can use MergeRight for other rows to merge those two cells in other rows).

2
On

Highest score answer is wrong. Paragraphs can paced to same row using negative SpaceBefore value with LeftIndent:

    var document = new Document { };
    var section = document.AddSection();
    section.AddParagraph("paragraph1" + Environment.NewLine + "second line");
    var par2 = section.AddParagraph("paragraph2");
    par2.Format.LeftIndent = "4cm";
    par2.Format.SpaceBefore = "-0.8cm";
    return document;

Output:

enter image description here