示例#1
0
        private void BuildPages()
        {
            PdfPage   page      = PdfDoc.AddPage();
            Section   section   = Migradoc.AddSection();
            Paragraph paragraph = section.AddParagraph(home.Address, "Heading1");

            Migradoc.LastSection.AddParagraph(home.Price, "Heading2");

            Migradoc.LastSection.AddParagraph(home.BriefFeatures.ToString(), "Heading3");

            //AddImage();

            Migradoc.LastSection.AddParagraph(home.Description, "Normal");
            PopulateImages();
        }