Bodoconsult.Core.Pdf 1.0.2

dotnet add package Bodoconsult.Core.Pdf --version 1.0.2
NuGet\Install-Package Bodoconsult.Core.Pdf -Version 1.0.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Bodoconsult.Core.Pdf" Version="1.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Bodoconsult.Core.Pdf --version 1.0.2
#r "nuget: Bodoconsult.Core.Pdf, 1.0.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Bodoconsult.Core.Pdf as a Cake Addin
#addin nuget:?package=Bodoconsult.Core.Pdf&version=1.0.2

// Install Bodoconsult.Core.Pdf as a Cake Tool
#tool nuget:?package=Bodoconsult.Core.Pdf&version=1.0.2

What does the library

Bodoconsult.Core.Pdf library simplifies the usage of the cool PDfSharp and Migradoc libraries https://http://pdfsharp.net/ to create PDF files. It uses the Nuget package PdfSharp.MigraDoc.netstandard 1.3.1. For more information on this package see https://www.nuget.org/packages/PdfSharp.MigraDoc.netstandard/1.3.1.

The central PdfCreator class provides easy to use methods for common tasks for PDF creation.

Bodoconsult.Core.Pdf library was developed originally to create reports from databases with tables and charts from databases.

How to use the library

The source code contain NUnit test classes, the following source code is extracted from. The samples below show the most helpful use cases for the library.

Basic usage

        var styleset = new DefaultStyleSet();
        if (landscape) LoadLandScapeSettings(styleset);

        var pdf = new PdfCreator(styleset);

        pdf.SetDocInfo("Test", "Susbject", "Author");

        pdf.SetHeader("Kopfzeile", "Header1", logoFileName);
        pdf.SetFooter("Footer \t<<page>> / <<pages>>");

        pdf.CreateTocSection("Inhaltsverzeichnis");
        pdf.CreateContentSection();

     
        pdf.AddParagraph("Überschrift 1", "Heading1");

        pdf.AddParagraph(TestHelper.Masstext1, "Normal");

        pdf.AddParagraph(code, "Code");
        pdf.AddParagraph(TestHelper.Masstext1, "Normal");


        pdf.AddDefinitionList(TestHelper.GetDefinitionList(), "Normal", "Normal");

        pdf.AddParagraph(TestHelper.Masstext1, "Normal");
        pdf.AddTable(TestHelper.GetDataTable(), "Tabellenüberschrift", "NoHeading1", "some additional info",
            "Details", pdf.Width);


        pdf.AddTableFrame(TestHelper.GetDataTable(), "Tabellenüberschrift Frame", "NoHeading1", "some additional info",
            "Details", pdf.Width / 2);

        pdf.AddTableFrame(TestHelper.GetDataTable(), "Tabellenüberschrift Frame", "NoHeading1", null,
            "Details", pdf.Width / 2);


        pdf.AddParagraph("Überschrift 2", "Heading1");
        pdf.AddParagraph(TestHelper.Masstext1, "Normal");

        pdf.AddParagraph("Überschrift 2-1", "Heading2");
        pdf.AddParagraph(TestHelper.Masstext1, "Normal");
		
		pdf.AddImage(imageFileName, 150, 50);

        pdf.AddParagraph("Überschrift 2-2", "Heading2");
        pdf.AddParagraph(TestHelper.Masstext1, "Normal");

        pdf.AddParagraph("Aufzählung 1", "Bullet1");
        pdf.AddParagraph("Aufzählung 2", "Bullet1");
        pdf.AddParagraph("Aufzählung 3", "Bullet1");
        pdf.AddParagraph("Aufzählung 4", "Bullet1");

        pdf.AddParagraph(TestHelper.Masstext1, "Normal");

        pdf.AddParagraph(code, "Code");

        pdf.AddParagraph(TestHelper.Masstext1, "Normal");

        pdf.RenderToPdf(fileName, false);

Adjusting layout

If you need to adjust the layout of the PDF file, start with a DefaultStyleSet and change the properties of the stylesheet as required or create an own StyleSet

Adjusting layout by altering the DefaultStyleSet

In the above sample this is done in a separate method in the following code line for paper orientation landscape:

        if (landscape) LoadLandScapeSettings(styleset);

Here the code of the method to set paper orientation to landscape:

    private void LoadLandScapeSettings(IStyleSet styleSet)
    {
        var ps = styleSet.PageSetup;
        ps.Orientation = Orientation.Landscape;
        ps.LeftMargin = Unit.FromCentimeter(1.5);
        ps.RightMargin = Unit.FromCentimeter(1.5);
        ps.TopMargin = Unit.FromCentimeter(1.5);
        ps.BottomMargin = Unit.FromCentimeter(1.5);


        var width = Unit.FromCentimeter( ps.PageHeight.Centimeter - ps.TopMargin.Centimeter - ps.BottomMargin.Centimeter);

        var style = styleSet.Normal;
        style.Font.Name = "Arial Narrow";
        style.Font.Size = 9;

        // Spezielles Format für Tabellenbasis (nicht ändern!)
        style = styleSet.NormalTable;
        style.Font.Name = "Arial Narrow";
        style.Font.Size = 8;
        style.ParagraphFormat.SpaceBefore = 0;
        style.ParagraphFormat.SpaceAfter = 0;
        style.ParagraphFormat.PageBreakBefore = false;
        style.ParagraphFormat.Alignment = ParagraphAlignment.Center;

        style = styleSet.Heading1;
        style.Font.Name = "Arial Black";
        style.Font.Size = 12;
        style.Font.Color = Colors.Black;
        style.ParagraphFormat.PageBreakBefore = true;
        style.ParagraphFormat.KeepTogether = true;
        style.ParagraphFormat.KeepWithNext = true;
        style.ParagraphFormat.SpaceAfter = 2;
        style.ParagraphFormat.SpaceBefore = 4;
        style.ParagraphFormat.Alignment = ParagraphAlignment.Center;

        style = styleSet.Title;
        style.Font.Name = "Arial Black";
        style.Font.Size = 16;
        style.Font.Color = Colors.Black;
        style.ParagraphFormat.SpaceAfter = 9;
        style.ParagraphFormat.SpaceBefore = 12;
        style.ParagraphFormat.Alignment = ParagraphAlignment.Center;

        style = styleSet.NoHeading1;
        style.Font.Name = "Arial Black";
        style.Font.Size = 10;
        style.Font.Color = Colors.Black;
        style.ParagraphFormat.SpaceAfter = 2;
        style.ParagraphFormat.SpaceBefore = 4;
        style.ParagraphFormat.Alignment = ParagraphAlignment.Center;

        style = styleSet.ChartTitle;
        style.Font.Name = "Arial Narrow";
        style.Font.Size = 10;
        style.Font.Bold = true;
        style.Font.Color = Colors.Black;
        style.ParagraphFormat.SpaceBefore = 3;
        style.ParagraphFormat.Alignment = ParagraphAlignment.Center;
        style.ParagraphFormat.SpaceAfter = 3;

        style = styleSet.ChartYLabel;
        style.Font.Name = "Arial Narrow";
        style.Font.Size = 8;
        style.Font.Color = Colors.Black;

        style = styleSet.Toc1;
        style.Font.Name = "Arial";
        style.Font.Size = 10;
        style.Font.Color = Colors.Black;
        style.ParagraphFormat.SpaceBefore = 3;
        style.ParagraphFormat.TabStops.ClearAll();
        style.ParagraphFormat.AddTabStop(width, TabAlignment.Right);
        style.ParagraphFormat.SpaceAfter = 0;
        style.ParagraphFormat.Borders.Bottom.Width = 0;
        style.ParagraphFormat.Borders.Top.Width = 0;
        style.ParagraphFormat.Borders.Right.Width = 0;
        style.ParagraphFormat.Borders.Left.Width = 0;


        style = styleSet.TocHeading1;
        style.Font.Name = "Arial Black";
        style.Font.Size = 12;
        style.Font.Color = Colors.Black;
        style.ParagraphFormat.SpaceAfter = 3;
        style.ParagraphFormat.SpaceAfter = 6;
        style.ParagraphFormat.Alignment = ParagraphAlignment.Center;

        // Kopfzeile
        style = styleSet.Header;
        style.Font.Name = "Arial Narrow";
        style.Font.Size = 8;
        style.Font.Color = Colors.Black;
        style.ParagraphFormat.Alignment = ParagraphAlignment.Right;
        style.ParagraphFormat.SpaceAfter = Unit.FromCentimeter(0.2);
        style.ParagraphFormat.SpaceBefore = Unit.FromCentimeter(0.5);
        style.ParagraphFormat.Borders.Bottom.Width = 1;
        style.ParagraphFormat.Borders.Bottom.Color = Colors.Black;


        style = styleSet.Details;
        style.Font.Name = "Arial Narrow";
        style.Font.Size = 10;
        style.Font.Color = Colors.Black;
        style.ParagraphFormat.SpaceAfter = 6;
        style.ParagraphFormat.Alignment = ParagraphAlignment.Center;

        style = styleSet.ChartCell;
        style.ParagraphFormat.Alignment = ParagraphAlignment.Center;

        style = styleSet.Footer;
        style.Font.Name = "Arial Narrow";
        style.Font.Size = 8;
        style.Font.Color = Colors.Black;
        style.ParagraphFormat.Alignment = ParagraphAlignment.Left;
        //style.ParagraphFormat.SpaceAfter = Unit.FromCentimeter(0.5);
        style.ParagraphFormat.SpaceBefore = Unit.FromCentimeter(0.5);
        style.ParagraphFormat.TabStops.ClearAll();
        style.ParagraphFormat.AddTabStop(width, TabAlignment.Right);
        style.ParagraphFormat.Borders.Top.Width = 1;
        style.ParagraphFormat.Borders.Top.Color = Colors.Black;

    
    }

Adjusting layout by creating an own StyleSet

Below you can see the current implementation of the DefaultStyleSet. Feel free to use this implementation to build a new StyleSet for your own purposes.

/// <summary>
/// Defines a default style set.Use subclassing for creating advanced stylesets
/// </summary>
public class DefaultStyleSet : IStyleSet
{

    public DefaultStyleSet()
    {

        double verticalMargin = 3;

        PageSetup = new PageSetup
        {
            Orientation = Orientation.Portrait,
            PageFormat = PageFormat.A4,
            PageWidth = Unit.FromCentimeter(21.0),
            PageHeight = Unit.FromCentimeter(29.7),
            LeftMargin = Unit.FromCentimeter(2.5),
            TopMargin = Unit.FromCentimeter(1.9),
            RightMargin = Unit.FromCentimeter(2.5),
            BottomMargin = Unit.FromCentimeter(1.9)
        };


        var width = PageSetup.PageWidth - PageSetup.LeftMargin - PageSetup.RightMargin;

        Normal = new Style("Normal", null)
        {
            Font =
            {
                Name = "Arial",
                Size = 10,
                Color = Colors.Black
            },
            ParagraphFormat =
            {
                SpaceBefore = verticalMargin,
                SpaceAfter = verticalMargin,
                PageBreakBefore = false,
                Alignment = ParagraphAlignment.Left,
                
            }
        };

        //Normal.ParagraphFormat.Borders.Left.Width = 1;
        //Normal.ParagraphFormat.Borders.Left.Color = Colors.Black;

        NormalTable = new Style("NormalTable", "Normal")
        {
            Font =
            {
                Name = "Arial Narrow",
                Size = 8
            },
            ParagraphFormat =
            {
                SpaceBefore = 0,
                SpaceAfter = 0,
                PageBreakBefore = false,
                Alignment = ParagraphAlignment.Center
            }
        };

        Heading1 = new Style("Heading1", "Normal")
        {
            Font =
            {
                Name = "Arial Black",
                Size = 16,
                Color = Colors.Black
            },
            ParagraphFormat =
            {
                PageBreakBefore = true,
                KeepTogether = true,
                KeepWithNext = true,
                SpaceAfter = verticalMargin,
                SpaceBefore = 3 * verticalMargin,
                Alignment = ParagraphAlignment.Left
            }
        };


        Heading2 = new Style("Heading2", "Normal")
        {
            Font =
            {
                Name = "Arial Black",
                Size = 14,
                Color = Colors.Black
            },
            ParagraphFormat =
            {
                KeepTogether = true,
                KeepWithNext = true,
                SpaceAfter = verticalMargin,
                SpaceBefore = 2 * verticalMargin,
                Alignment = ParagraphAlignment.Left
            }
        };

        Heading3 = new Style("Heading3", "Normal")
        {
            Font =
            {
                Name = "Arial",
                Size = 12,
                Color = Colors.Black,
                Bold = true
            },
            ParagraphFormat =
            {
                KeepTogether = true,
                KeepWithNext = true,
                SpaceAfter = verticalMargin,
                SpaceBefore = 2 * verticalMargin,
                Alignment = ParagraphAlignment.Left
            }
        };


        Heading4 = new Style("Heading4", "Normal")
        {
            Font =
            {
                Name = "Arial",
                Size = 12,
                Color = Colors.Black,
                Bold = true
            },
            ParagraphFormat =
            {
                KeepTogether = true,
                KeepWithNext = true,
                SpaceAfter = verticalMargin,
                SpaceBefore = verticalMargin,
                Alignment = ParagraphAlignment.Left
            }
        };


        Title = new Style("Title", "Normal")
        {
            Font =
            {
                Name = "Arial Black",
                Size = 20,
                Color = Colors.Black
            },
            ParagraphFormat =
            {
                SpaceAfter = 4 * verticalMargin,
                SpaceBefore = 5 * verticalMargin,
                Alignment = ParagraphAlignment.Center
            }
        };


        NoHeading1 = new Style("NoHeading1", "Normal")
        {
            Font =
            {
                Name = "Arial Black",
                Size = 10,
                Color = Colors.Black
            },
            ParagraphFormat =
            {
                SpaceAfter = verticalMargin,
                SpaceBefore = 2 * verticalMargin,
                Alignment = ParagraphAlignment.Center
            }
        };

        //style.ParagraphFormat.
        //style.ParagraphFormat.Shading.Color = Colors.Orange;


        ChartTitle = new Style("ChartTitle", "Normal")
        {
            Font =
            {
                Name = "Arial Narrow",
                Size = 10,
                Bold = true,
                Color = Colors.Red
            },
            ParagraphFormat =
            {
                SpaceBefore = 1.5 * verticalMargin,
                Alignment = ParagraphAlignment.Center,
                SpaceAfter = 1.5 * verticalMargin
            }
        };

        ChartYLabel = new Style("ChartYLabel", "Normal")
        {
            Font =
            {
                Name = "Arial Narrow",
                Size = 8,
                Color = Colors.Black
            }
        };

        Toc1 = new Style("TOC1", "Normal")
        {
            Font =
            {
                Name = "Arial Black",
                Size = 10,
                Color = Colors.Black
            },
            ParagraphFormat =
            {
                SpaceBefore = 2 * verticalMargin,
                SpaceAfter = verticalMargin
            }
        };

        Toc1.ParagraphFormat.Borders.Bottom.Width = 0;
        Toc1.ParagraphFormat.Borders.Top.Width = 0;
        Toc1.ParagraphFormat.Borders.Right.Width = 0;
        Toc1.ParagraphFormat.Borders.Left.Width = 0;
        Toc1.ParagraphFormat.TabStops.AddTabStop(width, TabAlignment.Right);

        Toc2 = new Style("TOC2", "Normal")
        {
            Font =
            {
                Name = "Arial",
                Size = 10,
                Color = Colors.Black
            },
            ParagraphFormat =
            {
                SpaceBefore = 2 * verticalMargin,
                SpaceAfter = verticalMargin
            }
        };

        Toc2.ParagraphFormat.Borders.Bottom.Width = 0;
        Toc2.ParagraphFormat.Borders.Top.Width = 0;
        Toc2.ParagraphFormat.Borders.Right.Width = 0;
        Toc2.ParagraphFormat.Borders.Left.Width = 0;
        Toc2.ParagraphFormat.LeftIndent = Unit.FromCentimeter(1);
        Toc2.ParagraphFormat.TabStops.AddTabStop(width, TabAlignment.Right);

        Toc3 = new Style("TOC3", "Normal")
        {
            Font =
            {
                Name = "Arial",
                Size = 10,
                Color = Colors.Black
            },
            ParagraphFormat =
            {
                SpaceBefore = 2 * verticalMargin,
                SpaceAfter = verticalMargin
            }
        };

        Toc3.ParagraphFormat.Borders.Bottom.Width = 0;
        Toc3.ParagraphFormat.Borders.Top.Width = 0;
        Toc3.ParagraphFormat.Borders.Right.Width = 0;
        Toc3.ParagraphFormat.Borders.Left.Width = 0;
        Toc3.ParagraphFormat.LeftIndent = Unit.FromCentimeter(2);
        Toc3.ParagraphFormat.TabStops.AddTabStop(width, TabAlignment.Right);

        Toc4 = new Style("TOC4", "Normal")
        {
            Font =
            {
                Name = "Arial",
                Size = 10,
                Color = Colors.Black
            },
            ParagraphFormat =
            {
                SpaceBefore = 2 * verticalMargin,
                SpaceAfter = verticalMargin
            }
        };

        Toc4.ParagraphFormat.Borders.Bottom.Width = 0;
        Toc4.ParagraphFormat.Borders.Top.Width = 0;
        Toc4.ParagraphFormat.Borders.Right.Width = 0;
        Toc4.ParagraphFormat.Borders.Left.Width = 0;
        Toc4.ParagraphFormat.LeftIndent = Unit.FromCentimeter(3);
        Toc4.ParagraphFormat.TabStops.AddTabStop(width, TabAlignment.Right);


        TocHeading1 = new Style("TocHeading1", "Normal")
        {
            Font =
            {
                Name = "Arial Black",
                Size = 12,
                Color = Colors.Black
            },
            ParagraphFormat = { SpaceAfter = verticalMargin }
        };
        TocHeading1.ParagraphFormat.SpaceAfter = verticalMargin;
        TocHeading1.ParagraphFormat.Alignment = ParagraphAlignment.Center;

        // Kopfzeile
        Header = new Style("Header", "Normal")
        {
            Font =
            {
                Name = "Arial Narrow",
                Size = 8,
                Color = Colors.Black
            },
            ParagraphFormat =
            {
                Alignment = ParagraphAlignment.Right,
                SpaceAfter = 4 * verticalMargin,
                SpaceBefore = 0
            }
        };
        Header.ParagraphFormat.Borders.Bottom.Width = 1;
        Header.ParagraphFormat.Borders.Bottom.Color = Colors.Black;


        Details = new Style("Details", "Normal")
        {
            Font =
            {
                Name = "Arial Narrow",
                Size = 10,
                Color = Colors.Black
            },
            ParagraphFormat =
            {
                SpaceAfter = 3 * verticalMargin,
                Alignment = ParagraphAlignment.Center
            }
        };



        Table = new Style("Table", "Normal")
        {
            Font =
            {
                Name = "Arial Narrow",
                Size = 9,
                Color = Colors.Black
            },
            ParagraphFormat =
            {
                SpaceAfter = 3 * verticalMargin,
                Alignment = ParagraphAlignment.Center
            }
        };



        ChartCell = new Style("ChartCell", "Normal")
        {
            ParagraphFormat = { Alignment = ParagraphAlignment.Center }
        };

        Footer = new Style("Footer", "Normal")
        {
            Font =
            {
                Name = "Arial Narrow",
                Size = 8,
                Color = Colors.Black
            },
            ParagraphFormat =
            {
                Alignment = ParagraphAlignment.Left,
                SpaceAfter = 0
            }
        };

        Footer.ParagraphFormat.Borders.Top.Visible = true;
        Footer.ParagraphFormat.Borders.Top.Width = 0.5;
        Footer.ParagraphFormat.Borders.Top.Color = Colors.Black;
        Footer.ParagraphFormat.AddTabStop(width, TabAlignment.Right);

        Code = new Style("Code", "Normal")
        {
            Font =
            {
                Name = "Courier New",
                Size = 10,
                Color = Colors.Black,
                Italic = true
            },
            ParagraphFormat =
            {
                Alignment = ParagraphAlignment.Left,
                SpaceBefore = 2 * verticalMargin,
                SpaceAfter = 2 * verticalMargin
            }
        };
        Code.ParagraphFormat.TabStops.ClearAll();
        Code.ParagraphFormat.TabStops.AddTabStop("1cm");
        Code.ParagraphFormat.TabStops.AddTabStop("2cm");
        Code.ParagraphFormat.TabStops.AddTabStop("3cm");
        Code.ParagraphFormat.TabStops.AddTabStop("4cm");
        Code.ParagraphFormat.TabStops.AddTabStop("5cm");
        Code.ParagraphFormat.TabStops.AddTabStop("6cm");
        Code.ParagraphFormat.TabStops.AddTabStop("7cm");
        Code.ParagraphFormat.TabStops.AddTabStop("8cm");
        Code.ParagraphFormat.TabStops.AddTabStop("9cm");
        Code.ParagraphFormat.TabStops.AddTabStop("10cm");
        Code.ParagraphFormat.TabStops.AddTabStop("11cm");
        Code.ParagraphFormat.TabStops.AddTabStop("12cm");
        Code.ParagraphFormat.TabStops.AddTabStop("13cm");
        Code.ParagraphFormat.TabStops.AddTabStop("14cm");
        Code.ParagraphFormat.TabStops.AddTabStop("26.7cm", TabAlignment.Right);


        Bullet1 = new Style("Bullet1", "Normal")
        {
            Font =
            {
                Name = "Arial",
                Size = 10,
                Color = Colors.Black
            },
            ParagraphFormat =
            {
                Alignment = ParagraphAlignment.Left,
                SpaceBefore = verticalMargin,
                SpaceAfter = verticalMargin
            }
        };
        Bullet1.ParagraphFormat.AddTabStop("26.7cm", TabAlignment.Right);
        Bullet1.ParagraphFormat.LeftIndent = Unit.FromCentimeter(1);
        var li = new ListInfo { ListType = ListType.BulletList1 };
        Bullet1.ParagraphFormat.ListInfo = li;

    }

    /// <summary>
    /// Normal paragraphs (default style)
    /// </summary>
    public PageSetup PageSetup { get; set; }


    /// <summary>
    /// Normal paragraphs (default style)
    /// </summary>
    public Style Normal { get; }

    /// <summary>
    /// Spezielles Format für Tabellenbasis (nicht ändern!)
    /// </summary>
    public Style NormalTable { get; }


    /// <summary>
    /// Table format
    /// </summary>
    public Style Table { get; }


    /// <summary>
    /// Title
    /// </summary>
    public Style Title { get; }

    /// <summary>
    /// Heading level 1
    /// </summary>
    public Style Heading1 { get; }

    /// <summary>
    /// Heading level 2
    /// </summary>
    public Style Heading2 { get; }

    /// <summary>
    /// Heading level 3
    /// </summary>
    public Style Heading3 { get; }


    /// <summary>
    /// Heading level 4
    /// </summary>
    public Style Heading4 { get; }


    public Style NoHeading1 { get; }


    public Style ChartTitle { get; }


    public Style ChartYLabel { get; }


    public Style Toc1 { get; }


    public Style Toc2 { get; }

    public Style Toc3 { get; }


    public Style Toc4 { get; }



    public Style TocHeading1 { get; }


    public Style Header { get; }



    public Style Details { get; }



    public Style ChartCell { get; }



    public Style Footer { get; }



    public Style Code { get; }



    public Style Bullet1 { get; }


}

Remarks

PdfSharp and Migradoc do not support stylesets by default- Same for PdfSharp.MigraDoc.netstandard 1.3.1. MigraDoc supports styles for styling PDF files.

Bodoconsult.Core.Pdf added styleset functionality. A styleset is defined as a list of MigraDoc styles. Therefore you can use all style settings supported by MigraDoc styles.

With exception of the Normal style all styles defined in a styleset are injected as new styles to the MigraDoc PDF document.

The Normal style exists in a MigraDoc PDF document by default. The Normal style from the styleset therefore has to cloned to the MigraDoc PDF document. It may happen that not all properties are cloned correctly.

About us

Bodoconsult http://www.bodoconsult.de is a Munich based software company.

Robert Leisner is senior software developer at Bodoconsult. See his profile on http://www.bodoconsult.de/Curriculum_vitae_Robert_Leisner.pdf.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Bodoconsult.Core.Pdf:

Package Downloads
Bodoconsult.Core.Text.Pdf

Enhances Bodoconsult.Core.Text, a simple class for collecting structured text in an app, with an export of the text to PDF. Use library to create simple reports from apps or from unit testing i.e. for auditors or as documentation.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.2 446 12/20/2022
1.0.1 613 1/14/2021
1.0.0 351 11/28/2020

Updates dependecies and added README.MD