對不起,我只是PDFsharp的初學者。如何設置MigraDoc的頁面大小?
如何將PageSize設置爲文檔?假設A4。如何設置它?這是我的代碼。謝謝。
Document document = new Document();
// Add a section to the document
Section section = document.AddSection();
section.AddParagraph("dddddd");
// Add a section to the document
var table = section.AddTable();
table.AddColumn("8cm");
table.AddColumn("8cm");
var row = table.AddRow();
var paragraph = row.Cells[0].AddParagraph("Left text");
paragraph.AddTab();
paragraph.AddText("Right text");
paragraph.Format.ClearAll();
// TabStop at column width minus inner margins and borders:
paragraph.Format.AddTabStop("27.7cm", TabAlignment.Right);
row.Cells[1].AddParagraph("Second column");
table.Borders.Width = 1;
Document = file,Section =一組頁面,[etc](http://www.pdfsharp.net/wiki/MigraDoc_PageSetup.ashx)。 – Sinatr
MigraDoc非常像Word:你有一個包含段落的文檔。 –
是的。那正是我想要尋找的。謝謝。 –