コード例 #1
0
        /// <summary>
        /// Main method for running the sample.
        /// </summary>
        public static SampleOutputInfo[] Run(Stream verdanaFontStream, Stream verdanaBoldFontStream, Stream logoImageStream)
        {
            PDFAnsiTrueTypeFont verdana     = new PDFAnsiTrueTypeFont(verdanaFontStream, 10, true);
            PDFAnsiTrueTypeFont verdanaBold = new PDFAnsiTrueTypeFont(verdanaBoldFontStream, 10, true);
            PDFPngImage         logoImage   = new PDFPngImage(logoImageStream);

            PDFFlowDocument document = new PDFFlowDocument();

            PDFFlowContent header = BuildHeader(verdana, logoImage);

            document.AddContent(header);

            PDFFlowContent sellerSection = BuildSellerSection(verdana, verdanaBold);

            document.AddContent(sellerSection);

            PDFFlowContent invoiceInfoSection = BuildInvoiceInfoSection(verdana, verdanaBold);

            document.AddContent(invoiceInfoSection);

            PDFFlowContent buyerSection = BuildBuyerSection(verdana, verdanaBold);

            document.AddContent(buyerSection);

            PDFFlowContent invoiceItemsSection = BuildInvoiceItemsSection(verdana, verdanaBold);

            document.AddContent(invoiceItemsSection);

            PDFFlowContent endSection = BuildEndSection(verdana);

            document.AddContent(endSection);

            SampleOutputInfo[] output = new SampleOutputInfo[] { new SampleOutputInfo(document, "invoice.pdf") };
            return(output);
        }
コード例 #2
0
        /// <summary>
        /// Main method for running the sample.
        /// </summary>
        public static SampleOutputInfo[] Run(Stream verdanaFontStream, Stream verdanaBoldFontStream)
        {
            HeadersAndFooters hf       = new HeadersAndFooters();
            PDFFlowDocument   document = hf.CreateDocument(verdanaFontStream, verdanaBoldFontStream);

            SampleOutputInfo[] output = new SampleOutputInfo[] { new SampleOutputInfo(document, "headersandfooters.pdf") };
            return(output);
        }
コード例 #3
0
        /// <summary>
        /// Main method for running the sample.
        /// </summary>
        public static SampleOutputInfo[] Run(Stream verdanaFontStream)
        {
            PDFAnsiTrueTypeFont verdana = new PDFAnsiTrueTypeFont(verdanaFontStream, 36, true);

            PDFFlowDocument document = new PDFFlowDocument();

            PDFFlowContent superscriptSection = BuildSuperscript(verdana);

            document.AddContent(superscriptSection);

            PDFFlowContent subscriptSection = BuildSubscript(verdana);

            document.AddContent(subscriptSection);

            SampleOutputInfo[] output = new SampleOutputInfo[] { new SampleOutputInfo(document, "superscriptsubscript.pdf") };
            return(output);
        }
コード例 #4
0
ファイル: TableGroups.cs プロジェクト: sss-software/pdf4net
        /// <summary>
        /// Main method for running the sample.
        /// </summary>
        public static SampleOutputInfo[] Run(Stream verdanaFontStream, Stream verdanaBoldFontStream, Stream data)
        {
            PDFAnsiTrueTypeFont verdana     = new PDFAnsiTrueTypeFont(verdanaFontStream, 1, true);
            PDFAnsiTrueTypeFont verdanaBold = new PDFAnsiTrueTypeFont(verdanaBoldFontStream, 1, true);

            PDFFlowDocument document = new PDFFlowDocument();

            PDFFlowContent header = BuildHeader(verdanaBold);

            document.AddContent(header);

            PDFFlowContent attendantsSection = BuildCountriesList(verdana, verdanaBold, data);

            document.AddContent(attendantsSection);

            SampleOutputInfo[] output = new SampleOutputInfo[] { new SampleOutputInfo(document, "tablegroups.pdf") };
            return(output);
        }
コード例 #5
0
        private void Document_PageCompleted(object sender, PDFFlowPageEventArgs e)
        {
            currentPage++;

            PDFFlowDocument document = (PDFFlowDocument)sender;

            PDFFlowTableContent mainHeaderTable = document.HeadersFooters.MainHeader.Content[0] as PDFFlowTableContent;

            (mainHeaderTable.Rows[0].Cells[0] as PDFFlowTableStringCell).Content = string.Format("Page {0}", currentPage);
            PDFFlowTableContent evenPagesHeaderTable = document.HeadersFooters.EvenPagesHeader.Content[0] as PDFFlowTableContent;

            (evenPagesHeaderTable.Rows[0].Cells[0] as PDFFlowTableStringCell).Content = string.Format("Page {0}", currentPage);

            PDFFlowTableContent mainFooterTable = document.HeadersFooters.MainFooter.Content[0] as PDFFlowTableContent;

            (mainFooterTable.Rows[0].Cells[0] as PDFFlowTableStringCell).Content = string.Format("Page {0}", currentPage);
            PDFFlowTableContent evenPagesFooterTable = document.HeadersFooters.EvenPagesFooter.Content[0] as PDFFlowTableContent;

            (evenPagesFooterTable.Rows[0].Cells[0] as PDFFlowTableStringCell).Content = string.Format("Page {0}", currentPage);
        }
コード例 #6
0
        private void CreateIntroPage(PDFFlowDocument document, PDFAnsiTrueTypeFont verdana, PDFAnsiTrueTypeFont verdanaBold)
        {
            PDFFormattedParagraph titleParagraph = new PDFFormattedParagraph("DOCUMENT INTRO PAGE");

            titleParagraph.SpacingBefore = 300;
            (titleParagraph.Blocks[0] as PDFFormattedTextBlock).Font      = new PDFAnsiTrueTypeFont(verdanaBold);
            (titleParagraph.Blocks[0] as PDFFormattedTextBlock).Font.Size = 36;
            titleParagraph.HorizontalAlign = PDFStringHorizontalAlign.Center;
            PDFFormattedParagraph subtitleParagraph = new PDFFormattedParagraph("no headers and footers");

            (subtitleParagraph.Blocks[0] as PDFFormattedTextBlock).Font      = new PDFAnsiTrueTypeFont(verdana);
            (subtitleParagraph.Blocks[0] as PDFFormattedTextBlock).Font.Size = 10;
            subtitleParagraph.HorizontalAlign = PDFStringHorizontalAlign.Center;

            PDFFormattedContent fc = new PDFFormattedContent();

            fc.Paragraphs.Add(titleParagraph);
            fc.Paragraphs.Add(subtitleParagraph);

            document.AddContent(new PDFFlowTextContent(fc));
        }
コード例 #7
0
        public PDFFlowDocument CreateDocument(Stream verdanaFontStream, Stream verdanaBoldFontStream)
        {
            PDFAnsiTrueTypeFont verdana     = new PDFAnsiTrueTypeFont(verdanaFontStream, 10, true);
            PDFAnsiTrueTypeFont verdanaBold = new PDFAnsiTrueTypeFont(verdanaBoldFontStream, 10, true);

            PDFFlowDocumentDefaults documentDefaults = new PDFFlowDocumentDefaults();

            documentDefaults.PageDefaults.Margins.Top    = 72;
            documentDefaults.PageDefaults.Margins.Bottom = 72;
            PDFFlowDocument document = new PDFFlowDocument(documentDefaults);

            document.PageCompleted += Document_PageCompleted;

            CreateHeadersAndFooters(document, verdana);

            CreateIntroPage(document, verdana, verdanaBold);

            for (int i = 0; i < 5; i++)
            {
                CreateContentPage(document, verdana, i);
            }

            return(document);
        }
コード例 #8
0
        private void CreateHeadersAndFooters(PDFFlowDocument document, PDFAnsiTrueTypeFont verdana)
        {
            PDFFlowDocumentHeader mainHeader = new PDFFlowDocumentHeader();

            mainHeader.TopMargin = 24;
            PDFFlowTableContent mainHeaderTable = new PDFFlowTableContent(1);

            mainHeaderTable.Rows.AddRowWithCells("Page");
            mainHeaderTable.Rows[0].MinHeight = 15;
            PDFFlowTableStringCell mainHeaderTableCell = mainHeaderTable.Rows[0].Cells[0] as PDFFlowTableStringCell;

            mainHeaderTableCell.Font            = new PDFAnsiTrueTypeFont(verdana);
            mainHeaderTableCell.Font.Size       = 8;
            mainHeaderTableCell.HorizontalAlign = PDFGraphicAlign.Far;
            mainHeaderTableCell.VerticalAlign   = PDFGraphicAlign.Center;
            mainHeaderTableCell.Borders         = new PDFFlowContentBorders();
            mainHeaderTableCell.Borders.Bottom  = new PDFPen(PDFRgbColor.Black, 1);
            mainHeader.Content.Add(mainHeaderTable);
            document.HeadersFooters.MainHeader = mainHeader;

            PDFFlowDocumentHeader evenPagesHeader = new PDFFlowDocumentHeader();

            evenPagesHeader.TopMargin = 24;
            PDFFlowTableContent evenPagesHeaderTable = new PDFFlowTableContent(1);

            evenPagesHeaderTable.Rows.AddRowWithCells("Page");
            evenPagesHeaderTable.Rows[0].MinHeight = 15;
            PDFFlowTableStringCell evenPagesHeaderTableCell = evenPagesHeaderTable.Rows[0].Cells[0] as PDFFlowTableStringCell;

            evenPagesHeaderTableCell.Font            = new PDFAnsiTrueTypeFont(verdana);
            evenPagesHeaderTableCell.Font.Size       = 8;
            evenPagesHeaderTableCell.HorizontalAlign = PDFGraphicAlign.Near;
            evenPagesHeaderTableCell.VerticalAlign   = PDFGraphicAlign.Center;
            evenPagesHeaderTableCell.Borders         = new PDFFlowContentBorders();
            evenPagesHeaderTableCell.Borders.Bottom  = new PDFPen(PDFRgbColor.Black, 1);
            evenPagesHeader.Content.Add(evenPagesHeaderTable);
            document.HeadersFooters.EvenPagesHeader = evenPagesHeader;

            document.HeadersFooters.FirstPageHeader = null;

            PDFFlowDocumentFooter mainFooter = new PDFFlowDocumentFooter();

            mainFooter.BottomMargin = 24;
            PDFFlowTableContent mainFooterTable = new PDFFlowTableContent(1);

            mainFooterTable.Rows.AddRowWithCells("Page");
            mainFooterTable.Rows[0].MinHeight = 15;
            PDFFlowTableStringCell mainFooterTableCell = mainFooterTable.Rows[0].Cells[0] as PDFFlowTableStringCell;

            mainFooterTableCell.Font            = new PDFAnsiTrueTypeFont(verdana);
            mainFooterTableCell.Font.Size       = 8;
            mainFooterTableCell.HorizontalAlign = PDFGraphicAlign.Far;
            mainFooterTableCell.VerticalAlign   = PDFGraphicAlign.Center;
            mainFooterTableCell.Borders         = new PDFFlowContentBorders();
            mainFooterTableCell.Borders.Top     = new PDFPen(PDFRgbColor.Black, 1);
            mainFooter.Content.Add(mainFooterTable);
            document.HeadersFooters.MainFooter = mainFooter;

            PDFFlowDocumentFooter evenPagesFooter = new PDFFlowDocumentFooter();

            evenPagesFooter.BottomMargin = 24;
            PDFFlowTableContent evenPagesFooterTable = new PDFFlowTableContent(1);

            evenPagesFooterTable.Rows.AddRowWithCells("Page");
            evenPagesFooterTable.Rows[0].MinHeight = 15;
            PDFFlowTableStringCell evenPagesFooterTableCell = evenPagesFooterTable.Rows[0].Cells[0] as PDFFlowTableStringCell;

            evenPagesFooterTableCell.Font            = new PDFAnsiTrueTypeFont(verdana);
            evenPagesFooterTableCell.Font.Size       = 8;
            evenPagesFooterTableCell.HorizontalAlign = PDFGraphicAlign.Near;
            evenPagesFooterTableCell.VerticalAlign   = PDFGraphicAlign.Center;
            evenPagesFooterTableCell.Borders         = new PDFFlowContentBorders();
            evenPagesFooterTableCell.Borders.Top     = new PDFPen(PDFRgbColor.Black, 1);
            evenPagesFooter.Content.Add(evenPagesFooterTable);
            document.HeadersFooters.EvenPagesFooter = evenPagesFooter;

            document.HeadersFooters.FirstPageFooter = null;
        }
コード例 #9
0
        private void CreateContentPage(PDFFlowDocument document, PDFAnsiTrueTypeFont verdana, int textIndex)
        {
            string[] text = new string[] {
                "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras commodo elementum odio, non venenatis risus efficitur a. " +
                "Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Fusce sit amet purus eget sem tristique faucibus. " +
                "Nam ut felis vel ex ullamcorper pretium at quis nisl. Nam ac lacus tincidunt, vulputate sapien vel, tempus sem. Aliquam vel ligula dui. " +
                "Vivamus porttitor nunc vitae mi interdum, vitae ullamcorper turpis bibendum. Vestibulum sagittis lorem ante, at tincidunt arcu suscipit eu. " +
                "Morbi augue eros, tristique a consectetur ac, egestas nec turpis. Praesent non purus quis sem consequat tempor sed ac augue. Integer at mauris ac ipsum bibendum aliquam vitae id mi. " +
                "Praesent efficitur tortor in ligula mattis scelerisque. Fusce in placerat augue. Mauris pretium, dui ac accumsan aliquet, justo sem posuere purus, " +
                "sit amet tristique mi tortor malesuada lorem. Sed congue sem a neque tristique tristique et a odio. Curabitur quis aliquam turpis, tincidunt ullamcorper velit. " +
                "Phasellus posuere, justo auctor convallis luctus, mi tortor interdum lorem, ac tempor nisi lorem in erat. Maecenas dapibus tristique lacus id egestas. " +
                "Vivamus id risus vitae velit porta lacinia. Aliquam erat volutpat. Nulla facilisi. Donec tempor arcu eu rhoncus fringilla.",
                "Vivamus ullamcorper ligula sit amet interdum imperdiet. Nulla facilisi. Suspendisse et euismod elit. Quisque vitae magna nunc. " +
                "Mauris condimentum at magna blandit semper. Pellentesque in lacus odio. Sed nec molestie lacus, eget scelerisque lorem. " +
                "Etiam rutrum tellus at auctor vehicula. Mauris consequat, tortor vitae finibus efficitur, tellus arcu feugiat leo, in condimentum elit felis ut risus. " +
                "Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Fusce tincidunt libero sem, ut hendrerit turpis dapibus ut. " +
                "Donec lacinia luctus scelerisque. Sed vulputate egestas accumsan. Cras volutpat enim neque, malesuada varius lorem volutpat eget. Mauris lobortis risus ut leo malesuada, " +
                "in volutpat felis finibus. Proin a gravida velit. Ut lorem urna, sollicitudin sit amet nibh at, vestibulum pharetra mauris. Maecenas metus mi, dapibus in erat at, " +
                "congue tincidunt sapien. Vestibulum in pellentesque risus, id accumsan mauris. Donec non ex consequat, pretium ante at, suscipit lacus. Fusce ac consectetur erat. " +
                "Pellentesque maximus justo quis ante ornare condimentum. ",
                "Proin accumsan orci a nulla gravida tincidunt. Nulla et nisl eget diam rhoncus euismod. Maecenas tellus eros, semper vitae pharetra a, tincidunt ut dolor. " +
                "Nullam tempor at sapien vel efficitur. Duis vel aliquet felis, vitae tincidunt dolor. Sed tortor urna, dictum eu leo quis, feugiat eleifend ligula. Quisque vitae nisi venenatis, " +
                "pretium augue id, consequat velit. Sed dignissim justo velit, id faucibus leo scelerisque sed. In vestibulum blandit ipsum et rhoncus. Aliquam erat lorem, interdum vitae ligula at, " +
                "vulputate feugiat nunc. Fusce condimentum quis ligula ac dictum. Aliquam et viverra purus. Duis sollicitudin dolor eget diam pretium tempus. Nullam in magna eu tortor facilisis placerat non " +
                "vitae eros. Ut vitae magna dictum felis lacinia aliquam facilisis nec sem. ",
                "Suspendisse potenti. Vivamus maximus mi consequat lectus tincidunt consectetur. Proin vulputate velit lectus, eu lobortis quam lobortis congue. Sed gravida magna non " +
                "eleifend malesuada. Donec tincidunt lorem et semper dignissim. Fusce ut ex vestibulum urna lobortis aliquet in lobortis ex. Integer vehicula erat sed quam dictum varius id sed magna. " +
                "Cras maximus lacus est, ut elementum neque faucibus et. Praesent malesuada egestas scelerisque. Donec interdum ex maximus, auctor nisl non, ornare enim. " +
                "Nulla finibus quis felis non iaculis. Maecenas fringilla placerat enim non pellentesque. Proin justo orci, elementum ut porttitor in, scelerisque vel nisl. " +
                "Nam sit amet pellentesque justo, et molestie dolor. Cras ipsum justo, facilisis eget diam non, lacinia iaculis libero. Curabitur convallis, velit nec finibus mattis, " +
                "tellus erat elementum ligula, quis viverra quam sapien et enim. Morbi tempor fringilla mattis. ",
                "Aenean porttitor, augue pretium semper tincidunt, justo orci volutpat odio, malesuada convallis lacus lorem at nisi. Nulla at dolor tincidunt, tempor orci et, blandit metus. " +
                "Pellentesque malesuada augue et odio interdum, sit amet laoreet odio sagittis. Maecenas porttitor consectetur eros nec tempor. Morbi ut pharetra nunc. Phasellus non massa congue, varius tortor nec, " +
                "maximus massa. Cras erat mauris, pulvinar eu nibh ac, scelerisque maximus sem. Nam sed fringilla dolor, finibus tincidunt purus. Sed in dui ut enim interdum sagittis. Cras neque quam, " +
                "ultricies euismod dignissim sit amet, elementum eget eros. Donec in sem vel nunc vulputate pharetra.Fusce rhoncus turpis id turpis aliquet pharetra. Vivamus tristique eros lectus, eget venenatis nulla dictum et. " +
                "Vestibulum volutpat mi eu consequat blandit. Quisque ornare pellentesque tellus, in congue turpis viverra vel. Donec quis velit non nulla aliquet maximus. Maecenas ultricies nisi dui, non dapibus libero tincidunt ut. " +
                "Quisque vel interdum diam, ultricies aliquet nisi. Vivamus dui erat, tincidunt quis nibh et, aliquet ultricies erat. Nullam sit amet sodales nibh, a gravida diam. Fusce efficitur ultrices pellentesque. " +
                "Pellentesque a suscipit justo. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nam lectus tellus, semper ut vehicula vitae, ullamcorper id sem. " +
                "Cras quis ipsum et ligula rutrum dignissim at sit amet leo. Etiam ut tortor in velit feugiat commodo a ut nunc. Proin nec efficitur augue. Phasellus non erat non dolor bibendum viverra in ut nunc. " +
                "Maecenas et sollicitudin nisi, in imperdiet mi. Sed luctus quam felis, a efficitur eros pellentesque ut. Integer suscipit dignissim quam sit amet feugiat. Morbi in odio quis ligula ultrices convallis. " +
                "Duis a dui tristique, pulvinar tellus vel, tristique ex. Sed metus velit, ornare sit amet felis at, finibus gravida ante. Nunc felis massa, viverra eget pellentesque ac, sollicitudin non odio. " +
                "Aliquam dictum nulla mauris, finibus venenatis dolor suscipit at. Donec sagittis consequat diam, non varius dolor ullamcorper et. Proin dictum magna eget massa posuere tincidunt. " +
                "Vivamus ut libero vel diam maximus posuere sagittis maximus mauris. Donec luctus, diam in porttitor interdum, nibh elit ultricies sem, eu porta nulla sapien id nisi. Mauris odio odio, " +
                "mattis quis enim et, laoreet consequat ligula. Praesent feugiat lacus sagittis, laoreet massa sit amet, luctus ipsum. Suspendisse id malesuada velit. Etiam sit amet risus diam. " +
                "Vestibulum non ligula vitae nunc bibendum ornare id ut ante. Morbi at orci mollis, commodo dui et, bibendum augue. Curabitur nibh arcu, vulputate eu sollicitudin et, egestas sed dui. " +
                "Mauris ante enim, cursus et scelerisque eu, vestibulum et neque. Sed gravida ultricies ante sit amet efficitur. Cras est augue, auctor vel commodo sit amet, consectetur at quam. " +
                "Phasellus vulputate convallis neque, vitae bibendum mi rutrum in. Pellentesque pharetra ultricies urna, vitae semper nulla congue non. Praesent venenatis ullamcorper risus, non luctus purus. " +
                "Integer rutrum magna id pulvinar viverra. Aliquam et scelerisque turpis. Quisque sed nisl eu orci congue tempus nec in tellus. Nam eget magna lacus. Nunc eu sapien in velit ultrices tincidunt. " +
                "Curabitur purus libero, viverra non mollis non, hendrerit sit amet tellus. Maecenas congue ut lectus et gravida. Nam commodo lacus at leo sollicitudin gravida. " +
                "Nullam felis ante, dapibus a laoreet a, sagittis id dolor. Sed eget risus id eros faucibus aliquet. Sed rhoncus nibh quam, at congue massa convallis ac. Nullam lobortis ex mauris, " +
                "nec viverra lacus fringilla sed.Pellentesque at sapien quis lectus ultrices fringilla a eu dolor. Pellentesque imperdiet ipsum a odio laoreet vehicula. Aenean vestibulum in dolor non suscipit. " +
                "Curabitur sed felis non mi malesuada mattis quis quis est. Maecenas finibus dolor et libero semper, et posuere sem interdum. Aenean posuere eleifend sapien, ac bibendum lorem egestas id. " +
                "Integer vehicula, quam in laoreet feugiat, neque elit scelerisque dui, eget facilisis dui turpis vel sapien. "
            };

            PDFFormattedContent fc = new PDFFormattedContent(text[textIndex]);

            (fc.Paragraphs[0].Blocks[0] as PDFFormattedTextBlock).Font      = new PDFAnsiTrueTypeFont(verdana);
            (fc.Paragraphs[0].Blocks[0] as PDFFormattedTextBlock).Font.Size = 10;

            document.StartNewPage();
            document.AddContent(new PDFFlowTextContent(fc));
        }
コード例 #10
0
        /// <summary>
        /// Main method for running the sample.
        /// </summary>
        public static SampleOutputInfo[] Run()
        {
            PDFStandardFont heading1Font = new PDFStandardFont(PDFStandardFontFace.HelveticaBold, 16);
            PDFStandardFont heading2Font = new PDFStandardFont(heading1Font);

            heading2Font.Size = 14;
            PDFStandardFont heading3Font = new PDFStandardFont(heading1Font);

            heading3Font.Size = 12;

            PDFFlowDocument doc = new PDFFlowDocument();

            // Add an intro page to the document.
            PDFFormattedContent fc = new PDFFormattedContent("DEMO DOCUMENT\r\nwith automatically generated\r\nTable of Contents");

            (fc.Paragraphs[0].Blocks[0] as PDFFormattedTextBlock).Font      = new PDFStandardFont(heading1Font);
            (fc.Paragraphs[0].Blocks[0] as PDFFormattedTextBlock).Font.Size = 24;
            fc.Paragraphs[0].HorizontalAlign = PDFStringHorizontalAlign.Center;
            PDFFlowTextContent ftc = new PDFFlowTextContent(fc);

            doc.AddContent(ftc);
            doc.StartNewPage();

            // Enable/disable the autonumbering of document headings
            bool autoNumber = true;

            // Setup the flow document content.
            // Heading content objects are used for the generation of table of contents.
            fc = new PDFFormattedContent("Chapter One");
            (fc.Paragraphs[0].Blocks[0] as PDFFormattedTextBlock).Font = heading1Font;
            fc.Paragraphs[0].SpacingBefore = fc.Paragraphs[0].SpacingAfter = 12;
            PDFFlowHeadingContent fhc = new PDFFlowHeadingContent(fc);

            fhc.AutoNumber = autoNumber;
            doc.AddContent(fhc);

            fc = new PDFFormattedContent();
            PDFFormattedParagraph fp = new PDFFormattedParagraph(text1);

            fp.HorizontalAlign = PDFStringHorizontalAlign.Justified;
            fp.FirstLineIndent = 18;
            fc.Paragraphs.Add(fp);
            ftc = new PDFFlowTextContent(fc);
            doc.AddContent(ftc);

            fc = new PDFFormattedContent("Section One");
            (fc.Paragraphs[0].Blocks[0] as PDFFormattedTextBlock).Font = heading2Font;
            fc.Paragraphs[0].SpacingBefore = fc.Paragraphs[0].SpacingAfter = 12;
            fhc            = new PDFFlowHeadingContent(fc);
            fhc.Level      = 2;
            fhc.AutoNumber = autoNumber;
            doc.AddContent(fhc);

            fc = new PDFFormattedContent();
            fp = new PDFFormattedParagraph(text2);
            fp.HorizontalAlign = PDFStringHorizontalAlign.Justified;
            fp.FirstLineIndent = 18;
            fc.Paragraphs.Add(fp);
            ftc = new PDFFlowTextContent(fc);
            doc.AddContent(ftc);

            fc = new PDFFormattedContent("Module One");
            (fc.Paragraphs[0].Blocks[0] as PDFFormattedTextBlock).Font = heading3Font;
            fc.Paragraphs[0].SpacingBefore = fc.Paragraphs[0].SpacingAfter = 12;
            fhc            = new PDFFlowHeadingContent(fc);
            fhc.Level      = 3;
            fhc.AutoNumber = autoNumber;
            doc.AddContent(fhc);

            fc = new PDFFormattedContent();
            fp = new PDFFormattedParagraph(text3);
            fp.HorizontalAlign = PDFStringHorizontalAlign.Justified;
            fp.FirstLineIndent = 18;
            fc.Paragraphs.Add(fp);
            ftc = new PDFFlowTextContent(fc);
            doc.AddContent(ftc);

            fc = new PDFFormattedContent("Module Two");
            (fc.Paragraphs[0].Blocks[0] as PDFFormattedTextBlock).Font = heading3Font;
            fc.Paragraphs[0].SpacingBefore = fc.Paragraphs[0].SpacingAfter = 12;
            fhc            = new PDFFlowHeadingContent(fc);
            fhc.Level      = 3;
            fhc.AutoNumber = autoNumber;
            doc.AddContent(fhc);

            fc = new PDFFormattedContent();
            fp = new PDFFormattedParagraph(text4);
            fp.HorizontalAlign = PDFStringHorizontalAlign.Justified;
            fp.FirstLineIndent = 18;
            fc.Paragraphs.Add(fp);
            ftc = new PDFFlowTextContent(fc);
            doc.AddContent(ftc);

            fc = new PDFFormattedContent("Section Two");
            (fc.Paragraphs[0].Blocks[0] as PDFFormattedTextBlock).Font = heading2Font;
            fc.Paragraphs[0].SpacingBefore = fc.Paragraphs[0].SpacingAfter = 12;
            fhc            = new PDFFlowHeadingContent(fc);
            fhc.Level      = 2;
            fhc.AutoNumber = autoNumber;
            doc.AddContent(fhc);

            fc = new PDFFormattedContent();
            fp = new PDFFormattedParagraph(text5);
            fp.HorizontalAlign = PDFStringHorizontalAlign.Justified;
            fp.FirstLineIndent = 18;
            fc.Paragraphs.Add(fp);
            ftc = new PDFFlowTextContent(fc);
            doc.AddContent(ftc);

            fc = new PDFFormattedContent("Module Three");
            (fc.Paragraphs[0].Blocks[0] as PDFFormattedTextBlock).Font = heading3Font;
            fc.Paragraphs[0].SpacingBefore = fc.Paragraphs[0].SpacingAfter = 12;
            fhc            = new PDFFlowHeadingContent(fc);
            fhc.Level      = 3;
            fhc.AutoNumber = autoNumber;
            doc.AddContent(fhc);

            fc = new PDFFormattedContent();
            fp = new PDFFormattedParagraph(text6);
            fp.HorizontalAlign = PDFStringHorizontalAlign.Justified;
            fp.FirstLineIndent = 18;
            fc.Paragraphs.Add(fp);
            ftc = new PDFFlowTextContent(fc);
            doc.AddContent(ftc);

            fc = new PDFFormattedContent("Module Four");
            (fc.Paragraphs[0].Blocks[0] as PDFFormattedTextBlock).Font = heading3Font;
            fc.Paragraphs[0].SpacingBefore = fc.Paragraphs[0].SpacingAfter = 12;
            fhc            = new PDFFlowHeadingContent(fc);
            fhc.Level      = 3;
            fhc.AutoNumber = autoNumber;
            doc.AddContent(fhc);

            fc = new PDFFormattedContent();
            fp = new PDFFormattedParagraph(text7);
            fp.HorizontalAlign = PDFStringHorizontalAlign.Justified;
            fp.FirstLineIndent = 18;
            fc.Paragraphs.Add(fp);
            ftc = new PDFFlowTextContent(fc);
            doc.AddContent(ftc);

            fc = new PDFFormattedContent("Chapter Two");
            (fc.Paragraphs[0].Blocks[0] as PDFFormattedTextBlock).Font = heading1Font;
            fc.Paragraphs[0].SpacingBefore = fc.Paragraphs[0].SpacingAfter = 12;
            fhc            = new PDFFlowHeadingContent(fc);
            fhc.AutoNumber = autoNumber;
            doc.AddContent(fhc);

            fc = new PDFFormattedContent();
            fp = new PDFFormattedParagraph(text8);
            fp.HorizontalAlign = PDFStringHorizontalAlign.Justified;
            fp.FirstLineIndent = 18;
            fc.Paragraphs.Add(fp);
            ftc = new PDFFlowTextContent(fc);
            doc.AddContent(ftc);

            fc = new PDFFormattedContent("Section Three");
            (fc.Paragraphs[0].Blocks[0] as PDFFormattedTextBlock).Font = heading2Font;
            fc.Paragraphs[0].SpacingBefore = fc.Paragraphs[0].SpacingAfter = 12;
            fhc            = new PDFFlowHeadingContent(fc);
            fhc.Level      = 2;
            fhc.AutoNumber = autoNumber;
            doc.AddContent(fhc);

            fc = new PDFFormattedContent();
            fp = new PDFFormattedParagraph(text9);
            fp.HorizontalAlign = PDFStringHorizontalAlign.Justified;
            fp.FirstLineIndent = 18;
            fc.Paragraphs.Add(fp);
            ftc = new PDFFlowTextContent(fc);
            doc.AddContent(ftc);

            fc = new PDFFormattedContent("Module Five");
            (fc.Paragraphs[0].Blocks[0] as PDFFormattedTextBlock).Font = heading3Font;
            fc.Paragraphs[0].SpacingBefore = fc.Paragraphs[0].SpacingAfter = 12;
            fhc            = new PDFFlowHeadingContent(fc);
            fhc.Level      = 3;
            fhc.AutoNumber = autoNumber;
            doc.AddContent(fhc);

            fc = new PDFFormattedContent();
            fp = new PDFFormattedParagraph(text10);
            fp.HorizontalAlign = PDFStringHorizontalAlign.Justified;
            fp.FirstLineIndent = 18;
            fc.Paragraphs.Add(fp);
            ftc = new PDFFlowTextContent(fc);
            doc.AddContent(ftc);

            fc = new PDFFormattedContent("Module Six");
            (fc.Paragraphs[0].Blocks[0] as PDFFormattedTextBlock).Font = heading3Font;
            fc.Paragraphs[0].SpacingBefore = fc.Paragraphs[0].SpacingAfter = 12;
            fhc            = new PDFFlowHeadingContent(fc);
            fhc.Level      = 3;
            fhc.AutoNumber = autoNumber;
            doc.AddContent(fhc);

            fc = new PDFFormattedContent();
            fp = new PDFFormattedParagraph(text1);
            fp.HorizontalAlign = PDFStringHorizontalAlign.Justified;
            fp.FirstLineIndent = 18;
            fc.Paragraphs.Add(fp);
            ftc = new PDFFlowTextContent(fc);
            doc.AddContent(ftc);

            fc = new PDFFormattedContent("Section Four");
            (fc.Paragraphs[0].Blocks[0] as PDFFormattedTextBlock).Font = heading2Font;
            fc.Paragraphs[0].SpacingBefore = fc.Paragraphs[0].SpacingAfter = 12;
            fhc            = new PDFFlowHeadingContent(fc);
            fhc.Level      = 2;
            fhc.AutoNumber = autoNumber;
            doc.AddContent(fhc);

            fc = new PDFFormattedContent();
            fp = new PDFFormattedParagraph(text2);
            fp.HorizontalAlign = PDFStringHorizontalAlign.Justified;
            fp.FirstLineIndent = 18;
            fc.Paragraphs.Add(fp);
            ftc = new PDFFlowTextContent(fc);
            doc.AddContent(ftc);

            fc = new PDFFormattedContent("Module Seven");
            (fc.Paragraphs[0].Blocks[0] as PDFFormattedTextBlock).Font = heading3Font;
            fc.Paragraphs[0].SpacingBefore = fc.Paragraphs[0].SpacingAfter = 12;
            fhc            = new PDFFlowHeadingContent(fc);
            fhc.Level      = 3;
            fhc.AutoNumber = autoNumber;
            doc.AddContent(fhc);

            fc = new PDFFormattedContent();
            fp = new PDFFormattedParagraph(text3);
            fp.HorizontalAlign = PDFStringHorizontalAlign.Justified;
            fp.FirstLineIndent = 18;
            fc.Paragraphs.Add(fp);
            ftc = new PDFFlowTextContent(fc);
            doc.AddContent(ftc);

            fc = new PDFFormattedContent("Module Eight");
            (fc.Paragraphs[0].Blocks[0] as PDFFormattedTextBlock).Font = heading3Font;
            fc.Paragraphs[0].SpacingBefore = fc.Paragraphs[0].SpacingAfter = 12;
            fhc            = new PDFFlowHeadingContent(fc);
            fhc.Level      = 3;
            fhc.AutoNumber = autoNumber;
            doc.AddContent(fhc);

            fc = new PDFFormattedContent();
            fp = new PDFFormattedParagraph(text4);
            fp.HorizontalAlign = PDFStringHorizontalAlign.Justified;
            fp.FirstLineIndent = 18;
            fc.Paragraphs.Add(fp);
            ftc = new PDFFlowTextContent(fc);
            doc.AddContent(ftc);

            // Setup the document's table of contents.
            PDFFlowDocumentTOCSettings tocSettings = new PDFFlowDocumentTOCSettings();

            // Generate the table of contents as document outline.
            tocSettings.GenerateDocumentOutline = true;
            // Generate the table of contents as a separate page in the document.
            tocSettings.GenerateContentsPage = true;
            tocSettings.ContentsTextFont     = new PDFStandardFont(PDFStandardFontFace.Helvetica, 10);
            tocSettings.ContentsTextColor    = new PDFBrush(PDFRgbColor.Black);
            // Insert the TOC page at position 1 (after the first page of the document).
            tocSettings.ContentsPagePosition = 1;
            // Visually connect the TOC entries with the page numbers using dots
            tocSettings.ContentsEntryFiller = '.';
            // Create a title for the TOC
            fc = new PDFFormattedContent("TABLE OF CONTENTS");
            (fc.Paragraphs[0].Blocks[0] as PDFFormattedTextBlock).Font      = new PDFStandardFont(heading1Font);
            (fc.Paragraphs[0].Blocks[0] as PDFFormattedTextBlock).Font.Size = 24;
            fc.Paragraphs[0].HorizontalAlign = PDFStringHorizontalAlign.Center;
            fc.Paragraphs[0].SpacingAfter    = 24;
            tocSettings.ContentsTitle        = new PDFFlowTextContent(fc);
            // Indent the entries in the TOC
            if (autoNumber)
            {
                tocSettings.ContentsHeadingIndent = 10;
            }
            doc.GenerateTableOfContents(tocSettings);

            SampleOutputInfo[] output = new SampleOutputInfo[] { new SampleOutputInfo(doc, "tableofcontents.pdf") };
            return(output);
        }
コード例 #11
0
        /// <summary>
        /// Main method for running the sample.
        /// </summary>
        public static SampleOutputInfo[] Run(Stream verdanaFontStream)
        {
            PDFAnsiTrueTypeFont textFont   = new PDFAnsiTrueTypeFont(verdanaFontStream, 10, true);
            PDFAnsiTrueTypeFont headerFont = new PDFAnsiTrueTypeFont(textFont);

            headerFont.Size = 16;

            PDFFlowDocument document = new PDFFlowDocument();

            PDFFlowTableContent headerTable = new PDFFlowTableContent(1);
            PDFFlowTableRow     row         = headerTable.Rows.AddRowWithCells("Store sales by year");

            (row.Cells[0] as PDFFlowTableStringCell).Font = headerFont;
            row.Cells[0].HorizontalAlign = PDFGraphicAlign.Center;
            row.MinHeight = 40;
            document.AddContent(headerTable);

            PDFFlowTableContent itemsTable = new PDFFlowTableContent(4);

            (itemsTable.DefaultCell as PDFFlowTableStringCell).Font = textFont;
            itemsTable.Border                     = new PDFPen(PDFRgbColor.Black, 0.5);
            itemsTable.MinRowHeight               = 15;
            itemsTable.Columns[2].VerticalAlign   = PDFGraphicAlign.Center;
            itemsTable.Columns[3].VerticalAlign   = PDFGraphicAlign.Center;
            itemsTable.Columns[3].HorizontalAlign = PDFGraphicAlign.Far;

            row = itemsTable.Rows.AddRowWithCells("Tablets", "iPad Air 2", "2013", "213,554");
            row.Cells[0].RowSpan = 12;
            row.Cells[1].RowSpan = 3;
            itemsTable.Rows.AddRowWithCells("2014", "123,443");
            itemsTable.Rows.AddRowWithCells("2015", "64,443");
            row = itemsTable.Rows.AddRowWithCells("iPad Pro", "2013", "342,443");
            row.Cells[0].RowSpan = 3;
            itemsTable.Rows.AddRowWithCells("2014", "56,332");
            itemsTable.Rows.AddRowWithCells("2015", "765,231");
            row = itemsTable.Rows.AddRowWithCells("Nexus 7", "2013", "432,541");
            row.Cells[0].RowSpan = 3;
            itemsTable.Rows.AddRowWithCells("2014", "213,871");
            itemsTable.Rows.AddRowWithCells("2015", "112,332");
            row = itemsTable.Rows.AddRowWithCells("Nexus 9", "2013", "342,434");
            row.Cells[0].RowSpan = 3;
            itemsTable.Rows.AddRowWithCells("2014", "231,778");
            itemsTable.Rows.AddRowWithCells("2015", "119,324");

            row = itemsTable.Rows.AddRowWithCells("Smartphones", "Samsung Galaxy S5", "2013", "1,543,321");
            row.Cells[0].RowSpan = 12;
            row.Cells[1].RowSpan = 3;
            itemsTable.Rows.AddRowWithCells("2014", "1,435,875");
            itemsTable.Rows.AddRowWithCells("2015", "1,876,324");
            row = itemsTable.Rows.AddRowWithCells("Samsung Galaxy S6", "2013", "1,432,134");
            row.Cells[0].RowSpan = 3;
            itemsTable.Rows.AddRowWithCells("2014", "1,232,432");
            itemsTable.Rows.AddRowWithCells("2015", "1,765,112");
            row = itemsTable.Rows.AddRowWithCells("iPhone 6", "2013", "1,433,665");
            row.Cells[0].RowSpan = 3;
            itemsTable.Rows.AddRowWithCells("2014", "2,443,245");
            itemsTable.Rows.AddRowWithCells("2015", "1,656,334");
            row = itemsTable.Rows.AddRowWithCells("iPhone 6 Plus", "2013", "994,123");
            row.Cells[0].RowSpan = 3;
            itemsTable.Rows.AddRowWithCells("2014", "443,546");
            itemsTable.Rows.AddRowWithCells("2015", "765,342");

            document.AddContent(itemsTable);

            SampleOutputInfo[] output = new SampleOutputInfo[] { new SampleOutputInfo(document, "tablecellspans.pdf") };
            return(output);
        }