Change PDF result to landscape

396 Views Asked by At

I need to convert data from database to pdf. I am getting the data using the specified ID.

@Html.ActionLink("Generate Form", "generateForm", "BuyersTask", new { id=pr })

When I clicked the link, it should show the data in PDF Form.

public ActionResult generateForm(int id = 0)
    {
        var check = db.purchaseOrders.Where(s => s.prf_Id == id).GroupBy(s => s.prf_Id).Select(s => s.FirstOrDefault());

        return new PdfActionResult(check);
    }   

I am passing the check to display the data in my PDF.

How is it possible that the PDF will be in landscape form?

I really need your help. Thank you

1

There are 1 best solutions below

1
On

According to this link you can achieve what you want by using this code:

 return new PdfActionResult(check, (writer, document) =>
            {
                document.SetPageSize(new Rectangle(1000f, 1000f, 90));
                document.NewPage();
            });