Search results for query: *

  1. Mo_Developer

    Question How to export listview to pdf

    I know it's too late to answer this but maybe someone will look for the same question later... all you need to do is to loop on your listview items and get the text from there in a collection. then use a PDF generation library to display the items as a list in your PDF, I use PDFFlow library...
  2. Mo_Developer

    The easiest way to create PDF documents in C#

    In this tutorial, we would like to share some of our experience in generating PDF documents in C# using the PDFFlow library. Getting started First, we need to create a new console application project “MyPDFDoc” in Visual Studio and choose Language “C#”. Then we need to add the...
  3. Mo_Developer

    Tip How to layout a PDF document with rowspan, colspan, and nested tables using PDFFlow

    This tutorial will show you when to use rowspan, colspan, and nested tables to get particular layouts and will guide you step-by-step to easily layout your PDF with the help of these options using the C# PDF generation library PDFFlow. Layouting using rowspans, colspans and nested tables allows...
  4. Mo_Developer

    C# using iText7 to generate a PDF positioning elements

    You don't need to learn or use Java, you just need to use a C# PDF generation library, you can use iText with C# too but I prefer PDFFlow, you can easily set padding, add header and footer, and create tables and fill it with data dynamically. you can find all your requirements on this example...
  5. Mo_Developer

    Question How to print a grid ?

    Hi jacobgtd, I recommend you convert what you need to print to a PDF then print it. I use a PDF generation library called PDFFlow and here is some simple code to create a table (grid) and set the PDF to landscape mode: //Create a document builder: DocumentBuilder.New() //Add a...
Back
Top Bottom